A java blog with a collection of examples and tutorials on Java and related technologies. (Under maintenance with continuous updates)
Be in touch with java jazzle or k2java.blogspot.com.
Pages
▼
Monday, March 21, 2011
Convert String to boolean
String strBoolean = "true";
//Do the String to boolean conversion boolean theValue = Boolean.parseBoolean(strBoolean);
No comments:
Post a Comment