-2

**Is there any way to convert class file into exe file ? Suppose i created a java desktop application and want to convert into exe **

1 Answers1

-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