如何避免由于混合代码而导致的Java安全异常
我有一个小程序,它存在于签名罐子中。该小程序使用另一个未签名的第 3 方 jar 文件。 启动小程序时,我收到我想避免的混合代码警告。
为了解决这个问题,我将“Trusted-Library: true”添加到我的小程序正在使用的未签名 jar 中。
但是,它仍然抛出SecurityException
。我也用 JRE update 20 尝试过此操作,但问题仍然存在。
有人可以帮我解决这个问题吗?当我必须使用未签名的 jar 时,如何避免收到警告消息。
谢谢!
I have an applet which is present in a signed jar. This applet uses another 3rd party jar file which is unsigned.
On launching the applet I get the Mixed code warning which I want to avoid.
To solve this issue, I added "Trusted-Library: true" to the unsigned jar which is being used by my applet.
But, it still throws SecurityException
. I tried this with JRE update 20 as well but problem persists.
Can someone please help me with this? How to avoid getting the warning message when I have to use an unsigned jar.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用您的工具链用您的密钥签署第 3 方 JAR。
Use your tool chain to sign the 3rd party JAR with your key.