这是我的编码,它将在桌面目录中创建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");
如何在那里更改代码以便可以运行并显示图像?抱歉英语不好。