StringBuffer.append(char[] str) has the following syntax.
public StringBuffer append(char[] str)
In the following code shows how to use StringBuffer.append(char[] str) method.
public class Main { /* w w w .j a va 2s. com*/ 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.