我想用Windows资源管理器打开文件夹bestellingen
。该文件夹位于我的项目的根目录中。
到目前为止我有这个:
Runtime rs = Runtime.getRuntime();
try {
Process p = rs.exec("./bestellingen/");
} catch (IOException exc) {
exc.printStackTrace();
}
但如果我运行该项目,则错误显示“access denied”
答案 0 :(得分:2)
目录无法执行,但您可以执行
File dir = new File("...");
if (Desktop.isDesktopSupported()) {
Desktop.getDesktop().open(dir);
}