文章目录
- 打印流
- PrintStream
- PrintWriter
- 追加操作
- 输出语句的重定向
- Properties
- 使用properties把键值对信息存入到属性文件中去
- 使用properties在文件中取键值对信息
- IO框架(了解)
打印流
作用:打印流可以实现方便、高效的打印数据到文件中去。打印流一般是指:PrintStream,PrintWriter两个类
可以实现打印什么数据就是什么数据,例如打印整数97写出去就是97,打印boolean的true,写出去就是true
打印流中自带了缓冲流,比较高效
PrintStream
浅看一下继承关系
构造器
PrintWriter
追加操作
只能在new低级管道时指定追加操作
如下
PrintStream ps = new PrintStream(new FileOutputStream("xxx.txt",true));
输出语句的重定向
属于打印流的一种应用,可以把输出语句的打印位置改到文件
System.out的底层就是一个PrintStream
System.SetOu(PrintSream p)把系统打印流改成自己的打印流
将sout输出的内容打印到文件中
public class Test {
public static void main(String[] args)throws Exception {
PrintStream ps = new PrintStream("test.txt");
System.setOut(ps);
System.out.println("hahah");
}
}
Properties
使用properties把键值对信息存入到属性文件中去
public class Test {
public static void main(String[] args)throws Exception {
Properties properties = new Properties();
properties.setProperty("zsw","666");
properties.setProperty("cxy","668");
properties.store(new FileWriter("test.properties"),"hahah"); //第二个参数为注释
}
}
文件结果:
使用properties在文件中取键值对信息
public class Test {
public static void main(String[] args)throws Exception {
Properties properties = new Properties();
properties.load(new FileReader("test.properties"));
System.out.println(properties);
}
}
读取结果:
IO框架(了解)