哪里可以下载最低限度的 JRE?

发布于 2024-10-15 12:28:19 字数 30 浏览 1 评论 0原文

我在哪里可以下载最小的 JRE 而不需要摆动?

where can i download minimum JRE with out swing?

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

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

发布评论

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

评论(3

风吹短裙飘 2024-10-22 12:28:19

没有合法的地方,因为你不允许修改 rt.jar 并重新分发它。

Nowhere legally, because you are not allowed to modify rt.jar and redistribute it.

枯寂 2024-10-22 12:28:19

Swing 编译的类是 JRE 附带的 rt.jar 文件的一部分。简单地说,rt.jar 文件是一个单元,包含编译形式的所有标准 java 类(包括 Swing)。 jar 文件就在那里,因此您无需将其与应用程序捆绑在一起。

从 Java 6 开始,无法合法地仅分发/使用该 jar 文件的部分内容。 Java 7 和 Jigsaw 计划将运行时模块化,并将其拆分为您可以有选择地使用的模块,但据我所知,Jigsaw 项目被推迟到 Java 8。

The Swing compiled classes are part of the rt.jar file that comes with the JRE. Simply put, the rt.jar file which is a unit, containing all standart java classes (Swing included) in compiled form. The jar file is there so that you do not need to bundle it with your application.

As of Java 6, there is no way to distribute/use only parts of that jar file legally. Java 7 with Project Jigsaw is planning on modularizing the runtime and splitting this into modules which you can selectively use, but AFAIK, project Jigsaw got pushed back for Java 8.

我三岁 2024-10-22 12:28:19

我不认为你可以。您可以在此处下载 JRE,但它将包含 Swing支持。您可以获取嵌入式版本,但是我认为这可能不是你想要的。您可以获取主 JRE,然后删除 rt.jar 文件中的 javax.swing 树(供您个人使用),但我不确定这是否会让你收获很多...

I don't think you can. You can download the JRE here, but it's going to have Swing support. You could grab an embedded version instead, but I don't think that's likely to be what you want. You could grab the main JRE and then remove the javax.swing tree in rt.jar file (for your own personal use), but I'm not sure that's going to gain you much...

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