* 打印流--就是为了方便进行输出,打印流分为两类,分别是
* 1.字符打印流 --- printWriter
* 2.字节打印流 --- printStream
import java.io.*;
public class demo_io5_print {
public static void main(String[] args) {
// bytePrint();
charPrint();
}
public static void bytePrint(){
File file = new File("1.txt");
try {
//字节输出流
OutputStream out = new FileOutputStream(file);
//字节输出缓冲流--加缓存提高效率
BufferedOutputStream bos = new BufferedOutputStream(out);
//字节输出打印流--方便操作
PrintStream ps = new PrintStream(bos);
ps.println("你好啊");
//依然会关闭以上的流
ps.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public static void charPrint(){
File file = new File("1.txt");
try {
//字符输出流
Writer writer = new FileWriter(file);
//字符输出缓冲流--加缓存提高效率
BufferedWriter bw = new BufferedWriter(writer);
//字符输出打印流--方便操作
PrintWriter ps = new PrintWriter(bw);
ps.println("你好啊呵");
//依然会关闭以上的流
ps.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}