Method append(char[] str, int offset, int len)
Return type: java.lang.StringBuffer
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 acc.append(c, 0, 1);
2 output.append(buf, 0, count);
3 sbuffer.append(buffer, 0, val);
4 s.append(buf, 0, len);
5 buffer.append(chr, 0, len);
6 text.append(buffer,0,r);
7 sb.append( buffer, 0, len );
8 ret.append(buf, 0, len);
9 buf.append(_indentation, 0, indent);
10 buffer.append(buf, 0, l);
11 buf.append(c, 0, n);
12 sb.append(cbuf, 0, count);
13 sb.append(buffer, 0, count);
14 buf.append(line2, 0, i).append(newString2);
15 tBuf.append(buffer, 0, res);
16 buffer.append(charBuffer, 0, charsRead);
17 sb.append(buffer, 0, actual);
18 buffer.append(chars, start, length);
19 buffer.append(str, offset, len);
20 _text.append( chars, start, length );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.