我想用Windows资源管理器打开文件夹bestellingen。该文件夹位于我项目的根目录中。
到目前为止,我有这个:

        Runtime rs = Runtime.getRuntime();
        try {
            Process p = rs.exec("./bestellingen/");
        } catch (IOException exc) {
            exc.printStackTrace();
        }


但是,如果我运行该项目,则错误消息为“拒绝访问”

最佳答案

目录无法执行,但您可以执行

File dir = new File("...");
if (Desktop.isDesktopSupported()) {
    Desktop.getDesktop().open(dir);
}

10-08 00:08