July 21, 200521 yr How to make a c++ app that runs Java application without using "java.exe".could this be possible?Thanks, Youssef Gamil
July 24, 200521 yr Hi,if you want to wrap a windows executable around your java application you have to do the following things in your native Application loader:1.) Make sure java is installed2.) Execute your classes or jar file with the "javaw.exe" through the exec Function (execve, execvp, ... whatever suits your needs best)Bye, Egon Edited July 24, 200521 yr by egrath
Create an account or sign in to comment