Updating .class file in jar

后端 未结 11 928
南笙
南笙 2020-11-27 05:52

I want to update a .class file in a jar with a new one. What is the easiest way to do it, especially in the Eclipse IDE?

11条回答
  •  时光说笑
    2020-11-27 06:09

    This tutorial details how to update a jar file

    jar -uf jar-file /input-file(s)     
    

    where 'u' means update.

提交回复
热议问题