在IntelliJ IDEA中,我可以按下“ Surround with ”快捷方式CTRL-ALT-T
,用try / catch块包围一段代码。
我想将资源部分包含在try-with-resources块中:
Writer out = Files.newBufferedWriter(destination, StandardCharsets.UTF_8);
temp.process(model, out);
对此:
try (Writer out = Files.newBufferedWriter(destination, StandardCharsets.UTF_8)) {
temp.process(model, out);
}
但是,按CTRL-ALT-T
时无法使用此选项。
如何使用try-with-resources块包围代码块?