1 package com.yhqtv.demo05.Writer;
2
3 import java.io.FileWriter;
4 import java.io.IOException;
5
6 /*
7 * @author XMKJ yhqtv.com Email:[email protected]
8 * @create 2020-05-13-9:18
9 *
10 */
11 /*
12 字符输出流写数据的其他方法
13 - void write(char[] cbuf)写入字符数组。
14 - abstract void write(char[] cbuf, int off, int len)写入字符数组的某一部分,off数组的开始索引,len写的字符个数。
15 - void write(String str)写入字符串。
16 - void write(String str, int off, int len) 写入字符串的某一部分,off字符串的开始索引,len写的字符个数。
17 */
18 public class Demo03Writer {
19 public static void main(String[] args) throws IOException {
20 FileWriter fw=new FileWriter("C:\\666\\6hello.txt");
21 char[] cs={'a','b','c','d','e','f','g'};
22 //void write(char[] cbuf)写入字符数组。
23 fw.write(cs);
24 //void write(char[] cbuf, int off, int len)写入字符数组的某一部分,off数组的开始索引,len写的字符个数。
25 fw.write(cs,3,3);
26 //void write(String str)写入字符串。
27 fw.write("鑫淼的世界");
28 //void write(String str, int off, int len) 写入字符串的某一部分,off字符串的开始索引,len写的字符个数。
29 fw.write("鑫淼的世界真好",3,2);
30 fw.close();
31 }
32 }