我是靠谱客的博主 执着大船,最近开发中收集的这篇文章主要介绍java.io.exception_Java IO异常处理方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class IOException{

// 获取系统默认的行分隔符

private static final String LINE_SEPARATOR = System.getProperty("line.separator");

public static void main(String[] args){

try{

FileWriter fw = new FileWriter("test.md");

fw.write("abc"+LINE_SEPARATOR+"haha");

} catch (IOException){

System.out.println(e.toString());

} finally{

fw.close(); // 此时, fw 是局部变量, 只在 try 内部有效, 此时 fw 属于未定义变量

}

}

}

// 改进第一步:

public class IOException{

// 获取系统默认的行分隔符

private static final String LINE_SEPARATOR = System.getProperty("line.separator");

public static void main(String[] args){

FileWriter fw = null; // 创建流对象

try{

// 流对象初始化

fw = new FileWriter("k:\test.md");

fw.write("abc"+LINE_SEPARATOR+"haha");

} catch (IOException){

System.out.println(e.toString());

} finally{

try{

fw.close();// 此处有可能出现关闭失败的异常, 所以也许要 try catch

} catch (IOException e){

throw new RuntimeException("关闭失败");

}

}

}

}

// 运行上述程序:

public class IOException{

// 获取系统默认的行分隔符

private static final String LINE_SEPARATOR = System.getProperty("line.separator");

public static void main(String[] args){

FileWriter fw = null;

try{

// 流对象初始化

fw = new FileWriter("k:\test.md"); // 此处出现异常: FileNotFoundException

// 该异常是 IOException 的子类

fw.write("abc"+LINE_SEPARATOR+"haha");

} catch (IOException){

System.out.println(e.toString);

} finally{

try{

fw.close(); // 由于文件没有创建成功, 因此此处抛出 NUllPointerException

} catch (IOException e){

throw new RuntimeException("关闭失败");

}

}

}

}

// 改进第二步:

public class IOException{

// 获取系统默认的行分隔符

private static final String LINE_SEPARATOR = System.getProperty("line.separator");

public static void main(String[] args){

FileWriter fw = null;

try{

// 流对象初始化

fw = new FileWriter("k:\test.md"); // 此处出现异常: FileNotFoundException

// 该异常是 IOException 的子类

fw.write("abc"+LINE_SEPARATOR+"haha");

} catch (IOException){

System.out.println(e.toString);

} finally{

if(fw != null) // 增加一条判断语句

try{

fw.close();

} catch (IOException e){

throw new RuntimeException("关闭失败");

}

}

}

}

参考资料:

最后

以上就是执着大船为你收集整理的java.io.exception_Java IO异常处理方式的全部内容,希望文章能够帮你解决java.io.exception_Java IO异常处理方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(96)

评论列表共有 0 条评论

立即
投稿
返回
顶部