Java project packaging
-
I am developing a java application which after developing i want to sell off to some organisation, but i dont know how to package all my project files into one file for commercial because i dont think they need to be viewing my source code. How can i pack them all in one setup file? :(
-
I am developing a java application which after developing i want to sell off to some organisation, but i dont know how to package all my project files into one file for commercial because i dont think they need to be viewing my source code. How can i pack them all in one setup file? :(
The simplest way is to put all your classes into a java archive via the
jar
command. You then need to send only the jar file(s) to your customers; see http://docs.oracle.com/javase/tutorial/deployment/index.html[^]. You could also try a Google search to see if there are any other setup applications applicable to Java apps. -
I am developing a java application which after developing i want to sell off to some organisation, but i dont know how to package all my project files into one file for commercial because i dont think they need to be viewing my source code. How can i pack them all in one setup file? :(
Do NOT include your source files. Only compiled files should be in the setup. Make sure resources and config files are in and accessible. Use Launch4j[^]. It's common used for creating a setup. If you want to protect your code further on, use an obfuscation tool like ProGuard[^]. It will make the compiled code unreadable.
regards Torsten I never finish anyth...
-
I am developing a java application which after developing i want to sell off to some organisation, but i dont know how to package all my project files into one file for commercial because i dont think they need to be viewing my source code. How can i pack them all in one setup file? :(
Hi, You can find out some ready made tool to do this. i think you will find best tool for that.
-
I am developing a java application which after developing i want to sell off to some organisation, but i dont know how to package all my project files into one file for commercial because i dont think they need to be viewing my source code. How can i pack them all in one setup file? :(
This is usefull to your learning... http://techgurulab.com/course/java-study-material/[^]