StringBuilder.toString() has the following syntax.
public String toString()
In the following code shows how to use StringBuilder.toString() method.
public class Main { public static void main(String[] argv) { StringBuilder sb = new StringBuilder(); sb.append("java2s.com"); System.out.println(sb.toString()); } }
The output: