I created new modules for software written in java. This software is run from jar file.My classes are extending the classes in this software. I want to write a plugin which adds new classes to the jar file. I know how to extract a jar file to the directory and add them to the jar file using java.util.jar package but as there are a lot of files to extract from the file, is it possible to add new classes without extracting the files to the folder, somehow directly.
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.
|
|
|
|||
|
|
Will allow to add new files/update existing files in jar without extracting. |
|||
|
|
|
Your question indicates that you want to do this programmatically, not using the command-line From the docs it appears that you'll at least need to get a Here's sample code for writing a jar from scratch programmatically, this should extend nicely to your case, the difference being that most of the |
|||
|
|