Java StringBuilder.append(String str)
Syntax
StringBuilder.append(String str) has the following syntax.
public StringBuilder append(String str)
Example
In the following code shows how to use StringBuilder.append(String str) method.
/*from w w w. j av a 2 s .c o m*/
public class Main {
public static void main(String[] argv) {
StringBuilder sb = new StringBuilder();
sb.append("java2s.com");
System.out.println(sb.toString());
}
}
The code above generates the following result.