Method write(byte[] buf, int off, int len)
Return type: void
Member of:
java.io.PrintStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
write(padding, 0, width);
2
write(zeros, 0, width);
3
System.out.write (b, 0, i);
4
for (int n = -1; (n = in.read(b)) != -1; System.out.write(b, 0, n));
5
out.write(myDummy.seite.getBytes(),0,myDummy.seite.length());
6
out.write(myPage.seite,0,myPage.seite.length);
7
System.out.write(buffer, 0, bufferCount);
8
System.out.write (b, 0, read);
9
out.write( b, off, len );
10
System.out.write(buffer, 0, pos + 5);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.