import java.awt.Desktop;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;//was wir importieren müssen
public static void main(String[] args) throws IOException {
String path = "/example:/example/example.exe/"; //den absoluten Pfad angeben
open(path);
}
public static void open(String targetFilePath) throws IOException {
Desktop desktop = Desktop.getDesktop();
desktop.open(new File(targetFilePath));//Datei wird geöffnet
}