Running a java program as an exe in Windows without JRE installed

前端 未结 7 938
悲&欢浪女
悲&欢浪女 2020-11-28 13:55

I want to run a java program as an exe in Windows. The windows box doesn\'t install java at all...

So, is there any other way in which the java program can be conve

7条回答
  •  离开以前
    2020-11-28 14:07

    For the application to run you will need the runtime. In fact the very first thing that happens when you start the app is a call is a made to OS to start JRE. You cannot do without JRE.

    [You can of course embded JRE into your app itself if you want].

提交回复
热议问题