关于浏览器应用程序:本机代码与带证书的 Applet
我一直在阅读有关 chrome 的新本机客户端支持的信息,我想知道与使用证书编写 Java 小程序相比有哪些优点/缺点?
快速说明:具有安全证书的 Java 小程序可以在用户计算机上执行代码并“绕过”Java 安全管理器。
谢谢,
-hbt
I've been reading about the new native client support for chrome and I was wondering what are the advantages/disavantages compared to writing Java applet with a certificate?
Quick note: A java applet with a security certificate can execute code on the user machine and "by-pass" the Java Security Manager.
Thanks,
-hbt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本机客户端可以比作没有证书的 Java 小程序。区别在于速度(本机客户端更快)和可移植性(您需要多个版本的代码(x86、x64、arm))。剩下的就是有证书和没有证书的java小程序的区别了。
Native client can be compared to Java applet without a certificate. The difference is speed (native client is faster) and portability (you need several versions of your code (x86, x64, arm)). The rest is difference between java applet with and without a certificate.
要问的问题:
Questions to ask: