|
Java Source Codes
StringBuffer Append Method
/**
*
* @author jimmi.prajapati
*
*/
public class StringBufferDemo{
public static void main(String[] args){
StringBuffer sb = new StringBuffer("The");
sb.append(" StringBuffer");
sb.append(" is");
sb.append(" growing");
sb.append(" with every line of code");
System.out.println(sb);
}
}
<<<----- Return to
Java Source
Code Questions Page.
Have a Question ?
post your questions here. It
will be answered as soon as possible.
Check
Java Interview
Questions for more Java Interview Questions with answers
Check
Servlet Interview
Questions for more Servlet Interview Questions with answers
Check
Structs Interview
Questions for more Structs Interview Questions with answers
|