Method write(int b)
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
System.err.write(b);
2
System.out.write(v);
3
new PrintStream( output ).write( 0 );
4
out.write(b);
5
findStream().write(b);
6
out.write( b );
7
System.out.write(charRead);
8
System.out.write(i);
9
while ( ( i = in.read ( ) ) > -1 ) System.out.write ( i );
10
out.write(c);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.