Posts from April 2012

3 result(s) found

Java checking a blank string and not null
Java

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?
Java

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
Java

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