Creating a resource that can be used with the try-with-resources technique : Resource Management « JDK 7 « Java






Creating a resource that can be used with the try-with-resources technique


public class Test {
  public static void main(String[] args) {
    try (MyResource resource1 = new MyResource();
        OtherResource resource2 = new OtherResource()) {
      resource1.do1();
      resource2.do2();
    } catch (Exception e) {
      e.printStackTrace();
      for (Throwable throwable : e.getSuppressed()) {
        System.out.println(throwable);
      }
    }

  }
}

class MyResource implements AutoCloseable {

  @Override
  public void close() throws Exception {
    System.out.println("close method executed");
    throw new UnsupportedOperationException("A problem has occurred");
  }

  public void do1() {
    System.out.println("method executed");
  }
}

class OtherResource implements AutoCloseable {
  @Override
  public void close() throws Exception {
    System.out.println("A");
    throw new UnsupportedOperationException("A problem has occurred");
  }

  public void do2() {
    System.out.println("executed");
  }
}

 








Related examples in the same category

1.Using the try-with-resource block to improve exception handling code