在 Java Web Start 中获取服务器地址
如何在我的 JavaWS 应用程序中获取从中下载该应用程序的服务器 IP 地址?
谢谢!
How can I get server ip address in my JavaWS application, from which it was downloaded?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想,使用
BasicService.getCodeBase
。I guess, use
BasicService.getCodeBase
.您需要获取 jnlp.jar 并将其添加到您的应用程序中。我必须在 JDK 示例和演示中找到它,它们与 JDK 分开分发。我使用这个示例和演示问题来找到它。我可以通过像 http://download.oracle.com/otn-pub/java/jdk/8u11-b12-demos/jdk-8u11-windows-i586-demos.zip
与jnlp.jar 在您的类路径中,使用此代码获取应用程序代码库的 URL,您可以使用它来查找服务器主机名。
You'll need to get ahold of jnlp.jar and add it to your application. I had to find it in the JDK samples and demos, which are distributed separately from the JDK. I used this samples and demos question to find it. I was able to get ahold of it with a URL like http://download.oracle.com/otn-pub/java/jdk/8u11-b12-demos/jdk-8u11-windows-i586-demos.zip
With jnlp.jar on your classpath, use this code to get the URL of your application's codebase, which you can use to find the server hostname.