Tagged: java

0

James Gosling resigns from Sun

Perhaps the end of Java as we know it? James posted the following at his new blog: “…Yes, indeed, the rumors are true: I resigned from Oracle a week ago (April 2nd). I apologize to everyone in St Petersburg who...

4

Android: Snow Leopard breaks DDMS

If you installed Snow Leopard and you are using the Android SDK, you will find that DDMS is broken due to Snow Leopard now including the 64-bit Java version and the Android SDK currently does not support a 64-bit SWT...

1

Use reflection wisely

Reflection gives your code access to internal information for classes loaded into the JVM and allows you to write code that works with classes selected during execution, not in the source code. This makes reflection a great tool for building...

2

Exceptions in Java

Working with exceptions in Java has become among developers a common task. Most of the time, however, the concept of exceptions is misunderstood. An exception-condition prevents the continuation of a method or the scope that your are in. In some...