can some one explain me how to crate jar file. my source folder has various sub folders and image files. you can see images explaining source folder structure from following url http://img63.imageshack.us/gal.php?g=capturev.png. when jar is created using eclipse export jar function, it only include class files only , but i want to create jar file for all the content in my source folder. third image shows the window i get when jar is creating. it has no other folders and images to select.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You can do this from the command line using the
But personally, I'd use something like Ant or Maven for this purpose. |
|||
|
|
|
See the Sun jar tutorial. Whilst you can run jar from the command line, I'd recommend using Ant and the Ant Jar task. It will give you a lot more control over how to build the jar file and what to include in it. e.g.
will build everything in the |
||||
|
|
|
Building a jar using jar tool: http://java.sun.com/docs/books/tutorial/deployment/jar/build.html Building a jar using ant: http://www.developer.com/tech/article.php/989631/Building-with-Ant-Introduction.htm |
|||
|
|