阅读程序题 了解打印流。我们已经学习了数据流,其特点是用 Java 的数据类型读写文件,但使用数据流写成的文件用其他文件阅读器无法阅读(看上去是乱码)。 PrintStream 类提供了一个过滤输出流,该输出流能以文本格式显示 Java 的数据类型。上机执行下列程序。 import java.io.*; public class E { public static void main(String args[ ]) { try{ File file=new File("p.txt"); FileOutputStream out=new FileOutputStream(file); PrintStream ps=new PrintStream(out); ps.print(12345.6789); ps.println("how are you"); ps.println(true); ps.close(); } catch(IOException e) { } } }