今天在学习FileWriter类的write方法时简单总结了下:
FileWriter从类OutputStreamWriter继承的
1、public void write(int c)
throws IOException写入单个字符。
c - 指定要写入字符的ASCII。
2、public void write(char[] cbuf, int off, int len)
throws IOException写入字符数组的某一部分
3、public void write(String str, int off, int len)
throws IOException写入字符串的某一部分。
FileWriter从类Writer继承的
1、public void write(char[] cbuf)
throws IOException写入字符数组。
2、public abstract void write(char[] cbuf, int off, int len)
throws IOException写入字符数组的某一部分。
|
|