IO流的异常处理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO流的异常处理相关的知识,希望对你有一定的参考价值。

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

 

public class Demo4 {


public static void main(String[] args) {
  getFile();
}

public static void getFile() {

//1.找到目标文件
  File file = new File("D:\\a.txt");
//2.建立通道
  FileInputStream inputStream = null;
  try {
    inputStream = new FileInputStream(file);
    byte[] b = new byte[1024];
  try {
    int count = inputStream.read(b);
    System.out.println(new String(b,0,count));
  } catch (IOException e) {

    System.out.println("出错误");

    throw new RuntimeException(e);
  }


  } catch (FileNotFoundException e) {

    System.out.println("文件不存在");
//提示用户有错误要修改
//让后面的代码定制运行
//System.exit(0); 不太好,一般是不随意推出虚拟机。
    throw new RuntimeException(e); //创建一个运行时异常
  }finally {

  try {
    inputStream.close();
  } catch (IOException e) {
    System.out.println("关闭失败");
    throw new RuntimeException(e);
  }
    }

  }

}

以上是关于IO流的异常处理的主要内容,如果未能解决你的问题,请参考以下文章

try catch处理流的异常

java IO

深入理解计算机操作系统--读书笔记-第八章异常

字符输出流的续写和换行和使用try--catch--finally处理流中的异常

IO异常的处理

JAVA IO流的简单总结+收集日志异常信息