更改“名称”已签名 Java 小程序的值
我已经对一个java小程序进行了自签名,因此当用户在浏览器中查看此小程序时,浏览器将显示一个数字签名无法验证确认对话框。没关系,但是此确认对话框的“名称:”属性(见“发布者:”属性上方)的值设置为我不记得在进行签名时设置的值。
所以我的问题是,这个值从哪里来,我该如何改变它?
I've self-signed a java applet, so when a user views this applet in a browser, the browser will show a digital signature cannot be verified confirmation dialog. That's all ok, however the value of the "Name:" property (seen above the "Publisher:" property) of this confirmation dialog is set to something I don't remember setting when doing the signing.
So my question is, where is this value coming from, and how do I change it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好的,找到了,就是HTML源码中小程序的名字
Ok, found it, it is the name of the applet in the HTML source
如果使用
If using the <object> tag, add a name parameter:
<param name="name" value="Name of Applet">
除了上述响应之外,请使用(签名)jar 内的 MANIFEST.MF 中的 Application-Name 属性。
In addition to the above responses, use Application-Name property in the MANIFEST.MF inside your (signed) jar.