Here is a confusing question – what does the next code prints? public static void doStam() { try { doExcption(); return; } finally { System.out.println(“Finally”); } } public static void main(String[] args)…
Month: January 2010
Apache Pivot. Making Java GUI is easy.
I just got to know to Pivot and I have to say, I love it. Pivot is a technology to create Java applets for RIA or desktop applications with the use of…
Java Interface rules
Let’s start with a short Java question: Bellow you can see the interface ‘Test’. Which lines in that interface will be rejected by the compiler? The answer is: lines: 7,8,9,10 I am…
Weekend project: Bluetooth multisender
In my last post I have shown you how to communicate with Bluetooth devices using java + Bluecove.jar. Using this knowledge I have created this small java weekend project – Bluetooth multisender….