Java

Java is a very popular programming language for developing different scale applications. Java can be used to develop various different kind of applications i.e.; a desktop application, mobile application, web application etc.

Java is an object oriented programming language developed by Sun Microsystems in 1995.

Learn more about Java evolution

Extract source from Java class file

As you know Java has become popular because of the byte code instructions. JVM can understand only the byte code instructions i.e.; every Java class will be converted into byte code instructions when ...

Extracting source from APK file

APK file:APK file is an android package file i.e.; it is an executable file on android operating system.I've recently developed one small android application called "Callduration". But unfortunately, ...

Online Java compiler & debugging tool - Ideone.com

I've found another great online Java compiler called Ideone.com. This tool compiles the code and offers an input box to enter the input for a program. And it will return the output. All these happens ...

Java StopWatch using swing components

I've developed a StopWatch which will just display the continuous time counter on the window when you run. I've just created one button "Start" and it will turn into "Stop" when we hit. This is very l...

Java checking a blank string and not null

The most common way of checking for equality of a string is as below String str = "Santhosh"; if(str!=null if("Santhosh".equals(str)) { //Code here... }As you know, we often have to check str...

What is WSDL?

WSDL stands for Web service Description Language. WSDL is used to locate and describe web services. WSDL is written in XML. This is the key element to develop Web service.WSDL is a document written in...

JDeveloper - generating getters and setters

IDEs have become very popular and intelligent to make programming easy for developers. Netbeans is one of the best IDE used for Java programming. In this post, I'm going to explain how to generate set...