• FileWriter其他方法的使用:

    • 1.void write(String str):写一个字符串数据
    • 2.void write(String str,int index,int Length):写一个字符出中的部分数据
    • 3.void write(int ch):写一个字符数据 - 这里的int类型的好处是既可以写char类型也可以写char类型所对应的int的值
    • 4.void write (char[] chs):写一个数组数据
    • 5.void write (char[] chs,int index,int length):写一个数组数据的一部分数据
    1. public class FileWriterDemo02 {
    2. public static void main(String[] args) throws IOException {
    3. //创建一个对象
    4. FileWriter fw = new FileWriter("b.txt");
    5. //数据操作
    6. fw.write("AAA");
    7. fw.write("AAA",0,3);
    8. fw.write("a");
    9. fw.write(65);
    10. fw.write(20013);
    11. char[] chs = {'a', 'b', 'c', 'd', 'e'};
    12. fw.write(chs,2,3);
    13. fw.close();
    14. }
    15. }