Method write(byte[] b)
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
write(s.getBytes());
2
out.write(buf);
3
out.write(Integer.toString(i).getBytes());
4
out.write(Integer.toString(i).getBytes());
5
out.write(s.getBytes("UTF-8"));
6
out.write(value.getBytes(encoding));
7
out.write(pageData);
8
out.write(body.getBytes());
9
os.write(rawDct);
10
out.write(b);
11
stream.write(bytes);
12
so.write(respdata);
13
out.write(ID);
14
((OutputStream) itr.next()).write(i);
15
os.write(image);
16
os.write(str.getBytes());
17
servletOut.write(pdfBytecode);
18
clobStorage.write(clobData);
19
out.write(getContent());
20
out.write( sb.toString().getBytes() );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.