Java StringBuffer.append(char[] str)
Syntax
StringBuffer.append(char[] str) has the following syntax.
public StringBuffer append(char[] str)
Example
In the following code shows how to use StringBuffer.append(char[] str) method.
public class Main {
// w w w.java 2 s. c o m
public static void main(String[] arg) {
StringBuffer buffer = new StringBuffer();
char[] chars = new char[]{'j','a','v','a','2','s','.','c','o','m'};
buffer.append(chars);
System.out.println(buffer);
}
}
The code above generates the following result.