create a JAVA Standalone executable application to run on different platforms without any Installation

后端 未结 4 1494
北恋
北恋 2021-02-14 19:24

I have created a run time image for my Java application using jlink and I would like to be able to ship my app as an executable to different platforms.

Ideally, it woul

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-14 19:47

    Also, have a look at SubstrateVM. This is not a true Java, however, it may help you in some cases like simple command line applications.

    Substrate VM is a framework that allows ahead-of-time (AOT) compilation of Java applications under closed-world assumption into executable images or shared objects (ELF-64 or 64-bit Mach-O).

提交回复
热议问题