Method write(char[] cbuf, int off, int len)
Return type: void
Member of:
java.io.OutputStreamWriter
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
logFileWriter.write(logDataBuf, 0, size); /* write(not size+1) */
2
getConvertor().write(mChars, 0, mCursor);
3
while((length = r1.read(buffer)) > 0) fw1.write(buffer, 0, length);
4
while((len = reader.read(buf)) > 0) writer.write(buf, 0, len);
5
out.write(dataBuf, 0, size);
6
os.write(chars, 0, readCount);
7
os.write(chars, 0, readCount);
8
destination.write(buffer, 0, bytes_read);
9
osw.write(buffer, off, len);
10
fw.write( buf, 0, rc );
11
getConvertor().write(chars, offset, length);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.