StringBuilder.append(int i) has the following syntax.
public StringBuilder append(int i)
In the following code shows how to use StringBuilder.append(int i) method.
public class Main { // w w w . j a v a 2 s . c om public static void main(String[] arg) { StringBuilder buffer = new StringBuilder(); int i = 123; buffer.append(i); System.out.println(buffer); } }
The code above generates the following result.