1. 背景
在 Java 开发中,很多资源(数据库连接、ZooKeeper 连接、Redis 客户端、文件流等)都需要手动关闭。如果忘记关闭,会导致 资源泄漏(连接占满、内存泄漏、文件句柄耗尽等)。
为了避免这种问题,Java 提供了两种方式来管理资源关闭:
传统
try-finally(Java 7 之前)
try-with-resources(Java 7+ 引入,推荐 ✅)
2. 传统 try-finally 写法
javaConnection conn = null; try { conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "123456"); // 使用连接 System.out.println("连接成功!"); } catch (SQLException e) { e.printStackTrace(); } finally { if (conn != null) { try { conn.close(); // 手动关闭 } catch (SQLException e) { e.printStackTrace(); } } }特点
必须在
finally中手动关闭资源。代码冗余,容易忘记写。
多个资源时,
finally代码会很长。
3. Java 7+ try-with-resources 写法(推荐)
只要资源类实现了
AutoCloseable或Closeable接口,就能在try中创建,Java 会在执行完try后自动关闭资源。
javatry (Connection conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test", "root", "123456")) { // 使用连接 System.out.println("连接成功!"); } catch (SQLException e) { e.printStackTrace(); } // 这里不需要写 finally,conn 会自动关闭特点
简洁,少写很多
finally。更安全,不会忘记关闭资源。
支持多个资源同时管理:
javatry (InputStream in = new FileInputStream("a.txt"); OutputStream out = new FileOutputStream("b.txt")) { // 同时使用 in 和 out }
4. 常见应用场景
(1)数据库连接
javatry (Connection conn = DriverManager.getConnection(url, user, pass)) { // 执行 SQL }(2)ZooKeeper(Curator)
javaRetryPolicy retryPolicy = new ExponentialBackoffRetry(1000, 3); try (CuratorFramework client = CuratorFrameworkFactory.newClient( "127.0.0.1:2181", 60000, 15000, retryPolicy)) { client.start(); // ZooKeeper 操作 }(3)Redis(Jedis)
javatry (Jedis jedis = new Jedis("localhost", 6379)) { jedis.set("key", "value"); }(4)文件流
javatry (FileInputStream fis = new FileInputStream("a.txt")) { int data; while ((data = fis.read()) != -1) { System.out.print((char) data); } }
5. 总结对比
写法 关闭方式 代码量 出错风险 try-finally 手动关闭 冗余多 容易忘记关闭 try-with-resources 自动关闭(需实现 AutoCloseable)简洁 安全,推荐 ✅
✅ 结论:
如果用的是 Java 7 及以上版本,强烈推荐使用 try-with-resources。
这种写法常用于 数据库、ZooKeeper、Redis、IO 流 等需要关闭的资源管理。
java--写在 try 中的创建连接
你我约定有三2025-09-05 23:40
相关推荐
k***19542 分钟前
Tomcat的升级j***49562 小时前
Windows操作系统部署Tomcat详细讲解代码游侠2 小时前
日历的各种C语言实现方法草莓熊Lotso2 小时前
unordered_map/unordered_set 使用指南:差异、性能与场景选择20岁30年经验的码农4 小时前
Spring Cloud Gateway 网关技术文档likuolei5 小时前
XML DOM 节点类型ZHE|张恒6 小时前
Spring Bean 生命周期夏天的味道٥8 小时前
@JsonIgnore对Date类型不生效q***38518 小时前
SpringCloud实战十三:Gateway之 Spring Cloud Gateway 动态路由小白学大数据8 小时前
Python爬虫伪装策略:如何模拟浏览器正常访问JSP站点