Method write(byte[] b, int off, int len)
Return type: void
Member of:
java.io.OutputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
out.write(buf, 0, 1);
2
stream.write(data, 0, 2 );
3
getOutputStream().write(array, 0, array.length);
4
out.write(buffer, 0, length);
5
out.write(buf, 0, count);
6
prStream.write(b,0,b.length);
7
out.write(_buf, 0, _pos);
8
out.write(buffer, 0, read);
9
out.write( buf, 0, len );
10
os.write(pad, 0, dimePadding(length));
11
dst.write(buffer, 0, got);
12
out.write(mBuffer, 0, mCursor);
13
os.write(buf, 0, i);
14
for (int count; (count = in.read(buffer)) != -1;) out.write(buffer, 0, count);
15
out.write(buffer, 0, length);
16
outs.write( accum, 0, a_count );
17
out.write(curr.buf, 0, curr.offset);
18
os.write( buf, 0, len );
19
out.write(bytes, 0, blockSize);
20
out.write(buffer, 0, length);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.