I have an executable .jar
-File which works, but I want to add some files to the .jar-File with another program. My idea was to use the 7zip command line extension, but when I try to add something to the .jar
-File. I use this command:
7za.exe a -t7z C:\myfiles\thejar.jar C:\filestoadd\* -r
Everytime I try to do this the CMD throws me an error and says:
Error: C:\myfiles\thejar.jar is not supported archive
Well, ok. Then my Idea was to unpack the file thejar.jar
, add the files to the directory where the files from thejar.jar
were extracted and create a .zip
with the extension .jar
. When I did this, the file thejar.jar
was about 1MB smaller than before with adding files to it. I tried different compression-methods but it was always smaller. When I tried to execute the .jar
, an error-message popped up and said Invalid or corrupt jarfile
. I already googled my problem, but I haven't got an answer for now... Can you help me?