根据条件从不同文件的尝试资源中创建FileInputStream

时间:2018-08-22 08:56:54

标签: java fileinputstream try-with-resources

我想在有条件的情况下使用try-with-resources。我想从文件f1创建流,如果OK == true

    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的情况下做同样的事情?

请提供有关该解决方案的一些详细信息的评论。

1 个答案:

答案 0 :(得分:1)

您可以在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)){...}

一样简单