Method write(int 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(v ? 1 : 0);
2 outJpegData.write(0xFF);
3 os.write(0); os.write(4);
4 os.write(0); os.write(4);
5 out.write(3);
6 output.write(0);
7 write(v);
8 outs.write( b );
9 this.targetStream.write(b);
10 os.write(v & 0xff);
11 out.write((val >>> 16) & 0xFF);
12 out.write(TYPE);
13 aOut.write (JConstantPoolEntry.CONSTANT_Float); // 1 byte
14 outJpegData.write((len >> 8) & 0xFF);
15 ((OutputStream) itr.next()).write(i);
16 prStream.write(i);
17 out.write(b);
18 os.write(b);
19 bsStream.write(ch); // write 8-bit
20 out.write((v >>> 0) & 0xFF);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.