是否可以从applet执行命令?

时间:2011-03-28 13:14:48

标签: java applet exec

我想这样做:

Runtime rt = Runtime.getRuntime();

try {
  rt.exec("notepad");
} catch (IOException ioe) {
  ioe.printStackTrace();
}  

在applet内部(从LOCAL html网页调用)是否可能?我记得java中的安全模型,但我不确定。

1 个答案:

答案 0 :(得分:3)

请查看此Q& A:Can trusted 1.5 applets execute system commands?以回答您的问题。