Method write(char[] cbuf, int off, int len)
Return type: void
Member of: java.io.Writer
[api documentation ] [ main menu]

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

1 writer.write(out, 0, 4);
2 writer.write(cs, 0, 4);
3 writer.write(buffer, 0, count);
4 out.write( buf, 0, len );
5 m_writer.write(m_lineSep, 0, m_lineSepLen);
6 out.write(buff,0,n);
7 this.out.write(data, 0, data.length);
8 out.write( buf2, 0, len );
9 out.write(cb, 0, nextChar);
10 out.write(buf, 0, len);
11 _bwriter.write( cbuf, 0, cbuf.length );
12 writer.write(charref, 0, o);
13 target.write(buffer, 0, cnt );
14 m_delegate.write(bytes, offset, length);
15 out.write(buf, off, len);
16 writer.write(buf, charPos, 12 - charPos);
17 writer.write(value, start, len);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.