-
Creating the jar file
My java app is put in the folder with structure as below ...
\myapp
\myapp\myapp.class
\myapp\libs
\myapp\libs\lib
\myapp\libs\lib\lib1.class
\myapp\libs\lib\lib2.class
\myapp\libs\util
\myapp\libs\util\util1.class
My question is, how do I create the jar file from the application above ?
-
system.drawing,
Use
jar cvf myapp.jar myapp.class lib util
According to Sun's docs that should recursively process the two subdir's as well: http://java.sun.com/docs/books/tutor...ics/build.html