Java异常处理机制在IO中的使用

Java异常处理机制在IO中的使用

public static void main(String[] args) {
	FileInputStream fis=null;
	try{
		fis=new FileInputStream("fos.txt");
		int d=fis.read();
		System.out.println(d);
	}catch(IOException e){
		e.printStackTrace();
	}finally{
		try{
			if(fis!=null){
				fis.close();
			}
		}catch(IOException e){
			e.printStackTrace();
		}
	}

}

你可能感兴趣的:(IT工作者)