我的问题:如何打开文件(在文件的系统默认 [外部] 程序中)而不将文件保存到磁盘?
我的情况:我的资源中有文件,我想在不先将它们保存到磁盘的情况下显示这些文件。例如,我有一个xml
文件,我想在用户机器上用默认程序打开它来读取xml
文件,而不是先将它保存到磁盘。
我一直在做什么:到目前为止,我刚刚将文件保存到一个临时位置,但我无法知道他们何时不再需要该文件,所以我不知道何时/是否删除它。这是我的SSCCE代码(嗯,它主要是 sscce,除了资源......你必须自己创建它):
package main;
import java.io.*;
public class SOQuestion {
public static void main(String[] args) throws IOException {
new SOQuestion().showTemplate();
}
/** Opens the temporary file */
private void showTemplate() throws IOException {
String tempDir = System.getProperty("java.io.tmpdir") + "\\BONotifier\\";
File parentFile = new File(tempDir);
if (!parentFile.exists()) {
parentFile.mkdirs();
}
File outputFile = new File(parentFile, "template.xml");
InputStream inputStream = getClass().getResourceAsStream("/resources/template.xml");
int size = 4096;
try (OutputStream out = new FileOutputStream(outputFile)) {
byte[] buffer = new byte[size];
int length;
while ((length = inputStream.read(buffer)) > 0) {
out.write(buffer, 0, length);
}
inputStream.close();
}
java.awt.Desktop.getDesktop().open(outputFile);
}
}