Click to See Complete Forum and Search --> : Making exe from class file


rajaraj
September 29th, 2000, 10:38 PM
can you make exe from class file?
please help.

santyns
September 30th, 2000, 12:20 AM
Hi!
Do you have to make an exe file? Because if you do, you'll loose the platform independant capability. But I read somewhere that there is something called as "jexegen" which can do so. However, the other way to get around the task is to create a batch file and you can have a short-cut to it...your batch file would be something like
@echo off
@start java classname
This should do it.
Pls rate this if it helps you.