String str="hello"+"hi"+""+"test"; <p class="indent">
StringBuffer strbuf=new StringBuffer(); strbuf.append("hello"); strbuf.append("hi"); strbuf.append(""); strbuf.append("test"); String finalstring=strbuf.toString(); <p class="indent">