Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据我在互联网上搜索的了解,如果我想运行一个带有安全策略的 java 程序,我必须输入类似的内容
java -Djava.security.policy=java.policy MainClass
java.policy描述安全策略的文件在哪里。我如何在 Eclipse 中做类似的事情?我尝试在运行配置-Djava.security.policy=java.policy下添加Arguments,但似乎没有任何效果。
java.policy
-Djava.security.policy=java.policy
Arguments
您必须将其添加到 VM 参数,而不是程序参数。
另一个错误可能是路径。您是否使用了文件的相对路径或绝对路径?如果是相对的,您应该考虑运行配置将项目文件夹作为根文件夹,而不是源文件夹。因此,如果您的策略文件位于子文件夹中,则必须提及。