我有这个 HTML:
<html>
<title>The Hello, World Applet</title>
<hr>
<applet code=javaapplication4.test.class
archive="JavaApplication4.jar"
width=600 height=400>
</applet>
<hr>
</html>
我想向其中添加以下策略文件:
/* AUTOMATICALLY GENERATED ON Thu May 09 15:48:03 AST 2013*/
/* DO NOT EDIT */
grant {
permission java.security.AllPermission;
};
因为我想让我的小程序AllPermission
像桌面应用程序一样。
我怎样才能做到这一点 ?