将 JVM 和代码合并到一个文件中
我想将 Java 虚拟机和我的 .java 代码(或编译的 .class 文件)合并到单个可执行二进制文件中。我该怎么做?
I would like to merge Java Virtual Machine and my .java code (or compiled .class files) into a single executable binary. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我真的怀疑从许可的角度来看你是否可以这样做。您将允许最终用户使用软件,而无需让他们接受 JVM 许可证。
I really doubt you are allowed to do that from the licensing prospective. You are going to let end user use software without passing them through accepting JVM license.
GCJ 基本上是这样工作的,但依赖于 GNU 类路径库,并且与 Java 标准不完全兼容(可能不支持某些语言功能和部分标准 API)。
GCJ basically works like that, but depends on the GNU classpath libraries and is not fully compatible with the Java standard (may not support some language features and parts of the standard API).