Java StringBuffer.insert(int offset, char[] str)
Syntax
StringBuffer.insert(int offset, char[] str) has the following syntax.
public StringBuffer insert(int offset, char[] str)
Example
In the following code shows how to use StringBuffer.insert(int offset, char[] str) method.
//from ww w. j a v a2 s. com
public class Main {
public static void main(String args[]) {
StringBuffer buffer = new StringBuffer();
char charArray[] = { 'a', 'b', 'c', 'd', 'e', 'f' };
buffer.insert(0, charArray);
System.out.println(buffer.toString());
}
}
The code above generates the following result.