如何使用try-catch-finally构造用两个资源重写try-with-resources?

问题描述 投票:2回答:1

如何重写以下代码

try (A a = new A(); B b = new B()) {
//useful work here
}
catch (Exception e) {
//other code
}

使用try-catch-finally构造?

如果我们只创建一个资源,那就有一个很好的链接here

不幸的是,我不知道在创建多个资源时如何概括这一点。

我不明白的一件事是我们如何认识到发生在a上的事情并没有发生在'b'上,反之亦然。

java exception try-catch try-with-resources
1个回答
3
投票

没有一般规则,但您必须确保尝试关闭所打开的所有资源,即使无法识别发生的情况和资源。

 void test() throws Exception {
    A a = null;
    B b = null;

    Exception myException = null;
    try {
        a = new A();
        b = new B();
        //useful work here
    } catch (Exception e) {
        myException = e;
        throw e;
    } finally {
        Throwable tA = handleCloaseable(a);
        Throwable tB = handleCloaseable(b);

        boolean throwIt = false;
        if (myException == null && tA != null || tB != null) {
            myException = new Exception();
            throwIt = true;
        }

        if (tA != null) {
            myException.addSuppressed(tA);
        }
        if (tB != null) {
            myException.addSuppressed(tB);
        }

        if (throwIt) {
            throw myException;
        }
    }
}

Throwable handleCloaseable(AutoCloseable e){ // your resources must implements AutoCloseable or Closeable
    if (e != null) {
        try {
            e.close();
        } catch (Throwable t) {
            return t;
        }
    }
    return null;
}

如果您尝试关闭资源时发生任何异常,请创建新的Exception(如果不存在)并添加异常,当您尝试使用addSuppressed关闭时

© www.soinside.com 2019 - 2024. All rights reserved.