根据条件在来自不同文件的 try-with-resources 中创建一个 FileInputStream

Create a FileInputStream in a try-with-resources from different files based on a condition

我想在条件下使用 try-with-resources。如果 OK == true:

我想从文件 f1 创建流
    try(FileInputStream fis1 = new FileInputStream(f1); FileInputStream fis2 = new FileInputStream(f1)) {...}

或者如果 OK == false:

从文件 f2 创建流
  try(FileInputStream fis1 = new FileInputStream(f2); FileInputStream fis2 = new FileInputStream(f2)) {...}

OK 是我程序中的一个布尔值。

是否可以在不引入重复代码的情况下做到这一点,并且仍然保持代码相当容易阅读?或者是否有另一种解决方案可以在没有 try-with-resources 的情况下做同样的事情?

如能提供有关解决方案的一些详细信息,我们将不胜感激。

您可以在 try 块之外使用最终 File 对象:

final File file = OK ? f1 : f2;

try(FileInputStream fis1 = new FileInputStream(file);
    FileInputStream fis2 = new FileInputStream(file)) {...}

除非有理由在同一个文件上创建两个流,否则代码应该像 try(FileInputStream fis = new FileInputStream(file)){...}

一样简单