标准输入、输出流

  • System.in和System.out分别代表了系统标准的输入和输出设备
  • 默认输入设备是:键盘,输出设备是:显示器
  • System的两个全局常量

System.in的类型是InputStream(字节流基类)
System.out的类型是PrintStream,其是OutputStream的子类FilterOutputStream 的子类

  • 重定向:通过System类的setIn,setOut方法对默认设备进行改变。

public static void setIn(InputStream in)
public static void setOut(PrintStream out)

  1. /*
  2. 从键盘输入字符串,要求将读取到的整行字符串转成大写输出。然后继续进行输入操作,直至当输入“e”或者“exit”时,退出程序。
  3. */
  4. public static void main(String[] args) {
  5. BufferedReader br = null;
  6. try {
  7. //System.in输入的为字节流,需要通过转换流转换为字符流
  8. InputStreamReader isr = new InputStreamReader(System.in);
  9. //通过BufferedReader的readLine()可以读取整行
  10. br = new BufferedReader(isr);
  11. while (true) {
  12. System.out.println("请输入字符串:");
  13. String data = br.readLine();
  14. if ("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)) {
  15. System.out.println("程序结束");
  16. break;
  17. }
  18. String upperCase = data.toUpperCase();
  19. System.out.println(upperCase);
  20. }
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. } finally {
  24. if (br != null) {
  25. try {
  26. br.close();
  27. } catch (IOException e) {
  28. e.printStackTrace();
  29. }
  30. }
  31. }
  32. }

打印流

实现将基本数据类型的数据格式转化为字符串输出

打印流:PrintStream和PrintWriter

  • 提供了一系列重载的print()和println()方法,用于多种数据类型的输出
  • PrintStream和PrintWriter的输出不会抛出IOException异常
  • PrintStream和PrintWriter有自动flush功能
  • PrintStream 打印的所有字符都使用平台的默认字符编码转换为字节。 在需要写入字符而不是写入字节的情况下,应该使用 PrintWriter 类。
  • System.out返回的是PrintStream的实例 ```java public void test() {
    1. PrintStream ps = null;
    2. try {
    3. FileOutputStream fos = new FileOutputStream(new File("D:\\IO\\text.txt"));
    4. // 创建打印输出流,设置为自动刷新模式(写入换行符或字节 '\n' 时都会刷新输出缓冲区)
    5. ps = new PrintStream(fos, true);
    6. if (ps != null) {// 把标准输出流(控制台输出)重定向输出到文件
    7. System.setOut(ps);
    8. }
  1. for (int i = 0; i <= 255; i++) { // 输出ASCII字符
  2. System.out.print((char) i);
  3. if (i % 50 == 0) { // 每50个数据一行
  4. System.out.println(); // 换行
  5. }
  6. }
  7. } catch (FileNotFoundException e) {
  8. e.printStackTrace();
  9. } finally {
  10. if (ps != null) {
  11. ps.close();
  12. }
  13. }
  14. }
  1. ---
  2. <a name="e0vkz"></a>
  3. # 数据流
  4. > 为了方便地操作Java语言的基本数据类型和String的数据,可以使用数据流。
  5. <a name="ulqk2"></a>
  6. ### 数据流的两个类
  7. `DataInputStream`:(用于读取基本数据类型、String类的数据)<br />`DataOutputStream`::(用于写出基本数据类型、String类的数据)<br />分别“套接”在 InputStream OutputStream 子类的流上
  8. <a name="W2JLY"></a>
  9. ### DataInputStream中的方法
  10. `boolean readBoolean() `<br />`byte readByte()`<br />`char readChar()`<br />`float readFloat()`<br />`double readDouble()`<br />`short readShort()`<br />`long readLong() `<br />`int readInt() `<br />`String readUTF() `<br />`void readFully(byte[] b) `
  11. <a name="SHN4E"></a>
  12. ### DataOutputStream中的方法
  13. 将上述的方法的read改为相应的write即可。
  14. ```java
  15. public void test3() throws IOException {
  16. DataOutputStream dos = null;
  17. try { // 创建连接到指定文件的数据输出流对象
  18. dos = new DataOutputStream(new FileOutputStream("destData.dat"));
  19. dos.writeUTF("我爱北京天安门"); // 写UTF字符串
  20. dos.flush();//刷新操作,将内存中的数据写入文件
  21. dos.writeBoolean(false); // 写入布尔值
  22. dos.writeLong(1234567890L); // 写入长整数
  23. System.out.println("写文件成功!");
  24. } catch (IOException e) {
  25. e.printStackTrace();
  26. } finally { // 关闭流对象
  27. try {
  28. if (dos != null) {
  29. // 关闭过滤流时,会自动关闭它包装的底层节点流
  30. dos.close();
  31. }
  32. } catch (IOException e) {
  33. e.printStackTrace();
  34. }
  35. }
  36. }
  1. /*
  2. 将文件中存储的基本数据类型变量和字符串读取到内存中,保存在变量中。
  3. 注意点:读取不同类型的数据的顺序要与当初写入文件时,保存的数据的顺序一致!
  4. */
  5. public void test4() {
  6. DataInputStream dis = null;
  7. try {
  8. dis = new DataInputStream(new FileInputStream("destData.dat"));
  9. String info = dis.readUTF();
  10. boolean flag = dis.readBoolean();
  11. long time = dis.readLong();
  12. System.out.println(info);
  13. System.out.println(flag);
  14. System.out.println(time);
  15. } catch (Exception e) {
  16. e.printStackTrace();
  17. } finally {
  18. if (dis != null) {
  19. try {
  20. dis.close();
  21. } catch (IOException e) {
  22. e.printStackTrace();
  23. }
  24. }
  25. }
  26. }