people,
I want to edit jar archives in a .NET application. That means, update classes and files inside. Is开发者_运维问答 there any .NET way to do this?
A Jar file is essentially a zip archive, containing the java-compiled bytecode as object files, and other resources required by the application. So yes, you should be able to edit a jar archive by using a zip library in your .NET application. Depending on what you need to do, this might be more or less difficult (for instance, replacing a resource file might be quite easy).
精彩评论