print 流 输出字符流时使用.最常见的是PrintWriter;
// 以下是一个小demo
PrintWriter pw = null;
try {
pw = new PrintWriter("123.txt");
pw.write("123我是内容..".toCharArray());
} catch (FileNotFoundException e) {
e.printStackTrace();
}
写文件的时候会用到