2
我想這樣做:是否可以從applet執行命令?
Runtime rt = Runtime.getRuntime();
try {
rt.exec("notepad");
} catch (IOException ioe) {
ioe.printStackTrace();
}
內的小應用程序(從本地Html網頁中的稱呼)這可能嗎?我記得在java中的一個安全模型的東西,但我不確定。
你試過了嗎? – 2011-03-28 13:17:47
可能重複的[Can trusted 1.5 applets執行系統命令?](http://stackoverflow.com/questions/1240575/can-trusted-1-5-applets-execute-system-commands) – jzd 2011-03-28 13:23:20
順便說一句 - 爲什麼你會想要從小應用程序中拉出(空白)記事本?如果這只是一個例子,請提供一個更好的。 – 2011-03-29 00:08:47