好吧,所以我只是写了一个快速的类,我尝试使用try资源而不是try-catch-finally(讨厌这样做)方法,并且我不断收到错误“非法启动类型”。然后我转向它上面的Java教程部分:http://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html
它表明你可以在括号中分配一个新变量。我不确定发生了什么。
private static final class EncryptedWriter {
private final Path filePath;
private FileOutputStream outputStream;
private FileInputStream inputStream;
public EncryptedWriter(Path filePath) {
if (filePath == null) {
this.filePath = Paths.get(EncryptionDriver.RESOURCE_FOLDER.toString(), "Encrypted.dat");
} else {
this.filePath = filePath;
}
}
public void write(byte[] data) {
try (this.outputStream = new FileOutputStream(this.filePath.toFile())){
} catch (FileNotFoundException ex) {
Logger.getLogger(EncryptionDriver.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
答案 0 :(得分:12)
这不是尝试资源的方式。您只需在那里声明OutputStream
。所以,这可行:
try (FileOutputStream outputStream = new FileOutputStream(this.filePath.toFile())){
try-with-resources 的重点是管理资源本身。他们的任务是初始化他们需要的资源,然后在执行离开范围时关闭它。因此,使用其他地方声明的资源是没有意义的。因为关闭它尚未打开的资源是不对的,然后旧的 try-catch 的问题又回来了。
该教程的第一行清楚地说明了这一点:
try-with-resources语句是一个try语句,声明一个或多个资源。
...和声明与初始化或赋值不同。