Method write(int c)
Return type: void
Member of:
java.io.Writer
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
w.write((int) ' ');
2
out.write(12);
3
w.write((int) '<');
4
w.write((int)'/');
5
out.write(c);
6
out.write(new Byte(ba[off++]).intValue());
7
this.w.write( b );
8
m_delegate.write(i);
9
out.write(i);
10
output.write(input.read());
11
out.write(c);
12
this.out.write(c);
13
_bwriter.write( c );
14
writer.write(c);
15
writer.write ((int) ch);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.