Category: Java & J2EE

2

Several South African iOS apps vulnerable

SourceDNA has released a report titled “AFNetworking Strikes Back: 25,000+ Apps” which highlights that over 25,000 iOS apps face exposure due to a security flaw (which has been fixed about a week ago) in a commonly used networking library. I originally...

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...

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...