Java Data Type Tutorial - 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.


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.