Blog Detail
Recent Posts
8 Step Eclipse RCP Application
There was a requirement in my project to develop a desktop application with rich UI. Being had experience in UI development in .net I just wanted to try with Java. Various options like applet, Swing, JFC, etc. mounted in my mind, and was bit confused...
Ant step by step
Consider a HelloWorld.java programpublic class HelloWorld { public static void main(String [] args) { System.out.println("Hello World!!!"); }}Compiling with commands:$ javac HelloWorld.java$ jar -cvf HelloWorld.jar HelloWorld.classadded manifest...
Generate Unique ID in Java
Java 1.5 has a method to generate an unique ID. Earlier, current time in milliseconds (System.currentTimeMillis()) was used as an unique ID. With the invention of multi-threaded fast computers there are risks of getting same ID. UUID in java.util pa...
Uninstall JRE from command prompt
I was searching how to uninstall JRE through command prompt, as it was required for my project. And here is the procedure to do so. Each JRE version has different Uninstall procedure. The following step caters to Java(v6.0.110).Open the registry edit...
Change file created and modified date
I was badly in need of changing the file's modified date, because my compiler considers the file for compilation only if its modified date is greater than the previous modified date. The following software came to rescue me....http://no-nonsense-soft...
Hide navbar in the blog
You wanna get rid of Navbar from the blog? Follow the below steps to hide it...1. Layout > Edit HTML2. Search for the following three lines]]></b:skin></head><body>3. Paste the following code above it to hide the Navbar#navbar-if...

