Core Java
-
Java yield-like using Stream API
Several programming languages, such as Ruby or Python to name a few, provides the yield command. Yield provides an effective…
Read More » -
How to use the new Apache Http Client to make a HEAD request
If you’ve updated your Apache HTTP Client code to use the newest library (at the time of this writing it…
Read More » -
Command Design Pattern Applied
Hi there! Today i’m gonna share with you a really great programming design pattern. It has a lot of usages…
Read More » -
IDE: 5 most favorite NetBeans features
Development with pleasure…. NetBeans has many interesting features that make development very easy, with few steps, and makes for a…
Read More » -
Builder Design Pattern Applied
Hi there! Today i’m gonna share the first of a brand new design pattern series i made. The builder design…
Read More » -
Decorator Design Pattern Applied
Hi there! Today i’m gonna show the decorator design pattern in action. The decorator design pattern is a largelly used…
Read More » -
Oracle’s Latest Java 8 Update Broke Your Tools — How Did it Happen?
If you’ve been keeping up with the news in the Java world lately, you’ve probably heard that the latest Java…
Read More » -
Difference between getPath(), getCanonicalPath() and getAbsolutePath() of File in Java
The File API is very important one in Java, since it gives access of File system to Java programs. Though…
Read More » -
Java’s Volatile Modifier
A while ago I wrote a Java servlet Filter that loads configuration in its init function (based on a parameter…
Read More »