文件字符流
// //字符输出流
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
public class Demo {
public static void main(String[] args) {
File f=new File("word.txt");
// //字符输出流
// FileWriter fw=null;
//
// try {
// fw=new FileWriter(f);
// String str="啥也不说了使劲的学吧";
// fw.write(str);//将字符串写入文档
//
// } catch (IOException e) {
// e.printStackTrace();
// }finally{
// if (fw!=null) {
// try {
// fw.close();
// } catch (IOException e) {
// e.printStackTrace();
// }
//
// }
// }
文件输入流
// //字符输入流单位是char
FileReader fr=null;
try {
fr=new FileReader(f);
char ch[]=new char[1024];//缓存区
int count;//以读出的字符数
while ( (count=fr.read(ch))!=-1) {
//循环读取文件中的数据,直接所有字符都读完
System.out.println("文件中的内容为:"+new String(ch));
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if (fr!=null) {
try {
fr.close();//关闭流
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}