Method write(byte[] b)
Return type: void
Member of:
java.io.FileOutputStream
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
fout.write(bytes);
2
fout.write(bytes);
3
fileStream.write(bytes);
4
out.write(buf);
5
stream.write(bytes);
6
DestinationFile.write(bytes);
7
target.write(buf);
8
os.write(ba);
9
fo.write (bfType);
10
fos.write(s.getBytes());
11
stream.write(bytes);
12
out.write(b);
13
out.write( editor.getText( 0, editor.getDocument().getLength()).getBytes( "UTF-8"));
14
out.write(data);
15
fos.write(CONTENT_LOG_HEADER.getBytes());
16
out.write(bytes);
17
fos.write(data);
18
fos.write(console.getText().getBytes());
19
fos.write(data);
20
this.write( new String( "\n" + empty ).getBytes());
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.