开发者

How to update (add or delete components) JAR File in .NET?

开发者 https://www.devze.com 2023-03-16 19:56 出处:网络
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, contai

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).

0

精彩评论

暂无评论...
验证码 换一张
取 消