**Is there any way to convert class file into exe file ? Suppose i created a java desktop application and want to convert into exe **
Asked
Active
Viewed 145 times
-2
-
please use google on how to convert java program to exe... – XtremeBaumer Aug 31 '17 at 07:06
1 Answers
-1
It is not possible, but you can create a .bat
file if you are using Windows with script like:
@echo off
java myProgram
Ultimately, the user still need to have JVM installed.

user3437460
- 17,253
- 15
- 58
- 106