This is my coding and it will create Decrypted image.jpg in desktop directory
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"));
and how to call that file "Decrypted image.jpg" in
Runtime.getRuntime().exec("rundll32 url.dll, FileProtocolHandler " + "Decrypted image.jpg");
how to change code up there so that can run and show the image ? sorry for bad english.