java 我在哪里可以下载JNLP.jar

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/7593029/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-30 20:37:22  来源:igfitidea点击:

Where can i download JNLP.jar

javajnlpjava-web-start

提问by Samrat

How can i run the examples in the link? Where can i get JNLP developer pack?

如何运行链接中的示例?我在哪里可以获得 JNLP 开发人员包?

Thanks Samrat

谢谢萨姆拉特

采纳答案by Bozho

C:\Program Files\Java\jdk1.6.0_27\sample\jnlp\servlet

In other words, in the sample\jnlp\servletdir of your JDK.

换句话说,在sample\jnlp\servletJDK的目录中。

回答by Steve

You can also find the javax.jnlp.*classes in lib/javaws.jarunder your JRE installation.

您还可以在JRE 安装下找到这些javax.jnlp.*lib/javaws.jar

回答by Andrew Thompson

The classes shown at the link are primarily of the JNLP API. It is automatically on the run-time class-path of apps launched using Java Web Start.

链接中显示的类主要是 JNLP API。它自动位于使用Java Web Start 启动的应用程序的运行时类路径上。

As to how to add them to the compile-time class-path, see the tips in (the build files of) these demos.

至于如何将它们添加到编译时类路径,请参阅这些演示(的构建文件)中的提示。

回答by user1952396

It's really hard to get there. The jar balls, such as jnlp-servlet.jar, are located in lib.

真的很难到达那里。jar 包,例如 jnlp-servlet.jar,位于 lib 中。

回答by stacker