如果我们可以使用代码库,小程序中的主机参数是什么?

发布于 2024-08-16 22:52:02 字数 86 浏览 4 评论 0原文

java applet 的主机参数有什么用?

是否可以欺骗使用与原始服务器不同的服务器?

我没有找到主机参数的清晰完整的解释。

what's are the uses of the host param with java applets?

can it be tricked to use a different server than the originating server?

I didn't find a clear complete explanation of the host param.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半透明的墙 2024-08-23 22:52:02

传递给小程序的参数就像传递给应用程序的命令行参数一样:小程序可以根据需要使用它们。名为 HOST 的参数没有什么特别之处,它不会导致小程序执行任何神奇的操作。

通常,小程序可能喜欢使用 HOST 参数在状态区域或其他位置显示它正在从哪个主机执行。或者它的行为可能会根据主机的不同而有所不同......或者其他什么。

除非小程序在浏览器的沙箱中经过签名并获得许可,否则它不会与加载它的主机之外的任何其他主机进行通信。

The parameters you pass to applets are just like command line parameters to an application: The applet can make whatever use of them that it wants. There's nothing special about a parameter called HOST, and it doesn't cause the applet to do anything magical.

Typically, an applet may like to use the HOST parameter to display, in a status area or something, which host it's being executed from. Or it may behave differently depending on the host... or something.

Unless the applet is signed and given permission in the browser's sandbox, it won't talk to any other host than the one it's loaded from.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文