异常处理 发表于 2020-06-28 分类于 Java核心语法-IO流与多线程 Valine: 本文字数: 696 阅读时长 ≈ 1 分钟 方式one12345678910111213141516public static void main(String[] args) throws Exception { FileWriter fw = null; try { fw = new FileWriter("xhh.txt"); } catch (IOException e) { e.printStackTrace(); } finally { if (fw != null) { try { fw.close(); } catch (IOException e) { e.printStackTrace(); } } }} 方式two格式12345try (创建流对象语句,如果多个,使用';'隔开) { 代码} catch(IOException e){ e.printStackTrace();} 12345678910public static void main(String[] args) throws Exception { //该语句确保了每个资源在语句结束时关闭 try (FileWriter fw = new FileWriter("xhh.txt"); FileReader fr = new FileReader("xhh.txt")) { fw.write("xhh.com"); int read = fr.read(); } catch (IOException e) { e.printStackTrace(); }} 推荐文章 多线程 打印流 ↓赏一个鸡腿... 要不,半个也行↓ 打赏 微信支付 本文标题:异常处理 本文作者: Jonathan_Yh 本文链接: http://myblog.ddos-sec.cn/2020/06/29/异常处理/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!