我有一个小程序,它必须exec
在同一台服务器上运行一个程序。
Runtime c = Runtime.getRuntime();
window.finishedQuery("Got Runtime...");
Process p = c.exec(String.format("cmd");
window.finishedQuery("Excecuted CMD");
第二行在浏览器中不起作用,但在 Netbeans 小程序查看器中起作用。
window
是我的小程序,它确实显示got runtime
但不显示excecuted CMD
。
在谷歌浏览器中,我看到以下消息:
access denied ("java.io.FilePermission" "<<ALL FILES>>" "execute")
我猜小程序“认为”我想访问用户的 PC/程序,但我想在服务器上启动一个程序。
我需要做什么?