最透彻解析try-with-resource

本文详细介绍了Java 7引入的try-with-resources异常处理机制,通过对比jdk7之前后的代码示例,展示了该机制如何简化资源关闭的操作。此外,还自定义了一个实现了AutoCloseable接口的资源类,并演示了其在try-with-resources中的使用。最后,分析了try-with-resources不会遮蔽原始异常的原因,并提供了反编译后的代码片段进行说明。
摘要由CSDN通过智能技术生成

前言

Try-with-resources是java7中一个新的异常处理机制,它能够很容易地关闭在try-catch语句块中使用的资源。

jdk7之前

下面是按行读取txt的小demo,数据处理之后需要在finally中关闭流

    public void handleResourceBeforeJdk7() {
        String encoding = "utf-8";
        File file = new File("e:/1/test.txt");
        InputStreamReader read = null;
        BufferedReader br = null;
        try {
            read = new InputStreamReader(
                    new FileInputStream(file), encoding);
            br = new BufferedReader(read);
            if (file.exists() && file.isFile()) {
                String lineText;
                while ((lineText = br.readLine()) != null) {
                    LOGGER.info("lineText=" + lineText);
                }
            }
        } catch (IOException e) {
            LOGGER.error("error", e);
        } finally {
            try {
                if (br != null) {
                    br.close();
                }
                if (read != null) {
                    read.close();
                }
            } catch (Exception e) {
                LOGGER.error("error", e);
            }
        }
    }

jdk7之后

jdk7之后,我们采用try-with-resource来处理资源的关闭,可以看到代码立马简洁了不少

    public void handleResourceAfterJdk7() {
        String encoding = "utf-8";
        File file = new File("e:/1/test.txt");
        try (InputStreamReader read = new InputStreamReader(
                new FileInputStream(file), encoding);
             BufferedReader br = new BufferedReader(read)) {
            if (file.exists() && file.isFile()) {
                String lineText;
                while ((lineText = br.readLine()) != null) {
                    LOGGER.info("lineText=" + lineText);
                }
            }
        } catch (IOException e) {
            LOGGER.error("error", e);
        }
    }

自定义实现AutoCloseable接口的资源类

其实在try-with-resiurce中定义的资源都是实现了AutoCloseable接口,在资源处理完成之后会自动进行关闭,我们可以自己定义一个资源类实现AutoCloseable接口来模拟资源的自动关闭

/**
 * @author: 爱琴孩
 */
@Service
public class AutoclosedTest implements AutoCloseable {

    private static final Logger LOGGER = LoggerFactory.getLogger(AutoclosedTest.class);

    public void handleResource() throws Exception {
        LOGGER.info("开始处理资源");
    }

    @Override
    public void close() throws Exception {
        LOGGER.info("资源处理完成之后的后处理操作!");
    }
}

使用try-with-resouce格式来处理我们自定义的资源类AutoclosedTest

try (AutoclosedTest autoclosedTest = new AutoclosedTest()) {
    autoclosedTest.handleResource();
} catch (Exception e) {
    LOGGER.error("error", e);
}

执行结果如下

 try-with-resource不会遮蔽原始异常

 try-with-resource相比之前的try-catch-finally,前者不会因为finally可能抛出的异常而屏蔽了try块的原始异常,这在实际现网问题排查影响很大,可以在上面两个方法中都抛出一个异常来测试下

    public void handleResourceWithException() throws Exception {
        LOGGER.info("开始处理资源");
        throw new Exception("exception from resource");
    }

    @Override
    public void close() throws Exception {
        LOGGER.info("资源处理完成之后的后处理操作!");
        throw new Exception("exception from close resource");
    }

执行之后如下

我们可以看看上面的使用try-with-resource形式处理AutoclosedTest资源类反编译之后的代码,看看为啥没有屏蔽资源处理的原始异常

        try {
            AutoclosedTest autoclosedTest = new AutoclosedTest();
            Throwable var3 = null;

            try {
                autoclosedTest.handleResource();
            } catch (Throwable var13) {
                var3 = var13;
                throw var13;
            } finally {
                if (autoclosedTest != null) {
                    if (var3 != null) {
                        try {
                            autoclosedTest.close();
                        } catch (Throwable var12) {
                            var3.addSuppressed(var12);
                        }
                    } else {
                        autoclosedTest.close();
                    }
                }

            }
        } catch (Exception var15) {
            LOGGER.error("error", var15);
        }

上面的代码可以看到,其实try-with-resource在代码编译之后还是在finally中去处理资源的后续操作,而var3.addSuppressed(var12)就能解释try-with-resource不会屏蔽原始异常了。

 

评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱琴孩

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值