I have a java WAR file and I want to edit a file in it without decompressing it. Because the file is large it can take a long time to decompress and compress it again.
I use SharpZipLib
in C#
for working with zip files, but I can't find a solution to edit some data in internal folders.
For example I want to edit a file with this path: file.war\dir1\dir2\a.txt
and replace some text in it. do you have any solution?
EDIT:
It may be irrelevant, but
I am almost sure this can be implemented, because I searched and found that WinRAR Software
has this capability.