Java StringBuilder.append(int i)
Syntax
StringBuilder.append(int i) has the following syntax.
public StringBuilder append(int i)
Example
In the following code shows how to use StringBuilder.append(int i) method.
public class Main {
// w w w . j a va 2 s. co m
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.