Packaging Java apps for the Windows/Linux desktop

后端 未结 18 2023
时光说笑
时光说笑 2020-12-02 06:41

I am writing an application in Java for the desktop using the Eclipse SWT library for GUI rendering. I think SWT helps Java get over the biggest hurdle for acceptance on th

18条回答
  •  日久生厌
    2020-12-02 07:01

    Have you considered writing a small program in C/C++ that just calls CreateProcess to start up the java VM with the jar (or class) file?

    You could get Visual C++ Express and put together the startup program pretty easily. This would make it easy to add a friendly icon as well.

提交回复
热议问题