StringBuilder.append(String str) has the following syntax.
public StringBuilder append(String str)
In the following code shows how to use StringBuilder.append(String str) method.
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.