Originally posted by Pallavi:
Can anyone help me I need to know if I can run a Java application on a client m/c without the client having the JVM.
Thanks in advance.
Hello Pallavi
I don't think you can create an EXE version of a Java application since EXE belongs to a single platform(Windows) and Java doesn't belong to anyone.(I mean its same on every platform).
If you are working in Windows and still need to invoke your Java application from explorer or from desktop you can create a batch file like the one shown below create a shortcut for the batch file.
One more thing. You can't escape from the JVM.
All the Best
Batch file --
@echo off
rem set path or set classpath depending on your OS(WinNT or Windows 95/98)
java <fileName>
vadiraj