Method getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
Return type: void
Member of: java.lang.StringBuffer
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 b.getChars(0, L, chars, 0);
2 buf.getChars(0, bs, chars, 0);
3 buf.getChars(0,buf.length(),cbuf,0);
4 buffer.getChars(0, length, charBuffer, 0);
5 sb.getChars(0, outBuf.length, outBuf, 0);
6 buffer.getChars(startElementId + 1, endElementId, elementId, 0);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.