Method write(String str, int off, int len)
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(s, 0, s.length());
2
w.write(s, 0, s.length());
3
writer.write(buffer, 0, buffer.length());
4
((Writer) itr.next()).write(par1,par2,par3);
5
out.write(s, off, len);
6
this.out.write(data, start, length);
7
writer.write(s, off, len);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.