currently I'm trying to generate an executable JAR file programatically.
I've been using this thread (How to use JarOutputStream to create a JAR file?) to generate the JAR file but so far it's packed with the native .java files of my test project.
Now I want to know, if its possible to run the JAR file if its only filled with the native classes or do I have to (somehow) compile them into .class files before I can generate the JAR file.
Thanks for your upcoming help!