如何在Runtime.getRuntime()。exec中调用文件并运行(“rundll32 url.dll,FileProtocolHandler”)

时间:2016-05-07 12:52:38

标签: java windows runtime runtime.exec rundll32

这是我的编码,它将在桌面目录中创建Decrypted image.jpg

File desktopDir = new File(System.getProperty("user.home"), "Desktop");
System.out.println(desktopDir.getPath() + " " + desktopDir.exists());
String pathToDesktop = desktopDir.getPath();
FileOutputStream outStream =  new FileOutputStream(new File(desktopDir, "Decrypted image.jpg"));

以及如何在

中调用该文件“Decrypted image.jpg”
Runtime.getRuntime().exec("rundll32 url.dll, FileProtocolHandler " + "Decrypted image.jpg");

如何在那里更改代码以便可以运行并显示图像?抱歉英语不好。

0 个答案:

没有答案