使用Java Runtime打开项目根目录中的文件夹

时间:2014-03-17 22:11:32

标签: java runtime

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

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

但如果我运行该项目,则错误显示“access denied”

1 个答案:

答案 0 :(得分:2)

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

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