I am working on a Java application. Essentially, it picks a .jar
file and then inserts some files into it.
I am using the answer from Updating .JAR's contents from code. However, it is slow because it is literally make a brand new file and manually copying all the files (including the old ones) into it!
I find this strange. Is it not possible to modify a .jar
file without create a whole new one?