![endif]-->
!doctype>
Search JavaLinker
string
In Java we can create the string object in two ways.
1)By using double quotes ,for example String s1 = "welcome";
2)By using new operator,for example String s2 = new String("welcome");
Java team providing the api to manipulating the string operations for example finding length of string,concatenating strings etc..