Modifying a jar file

后端 未结 5 1139
轮回少年
轮回少年 2020-12-30 09:47

I have a jar file which is used in html file as applet. I want to modify the content of the jar file and to rebuild the jar file so that the html will work fine with the new

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-30 10:35

    You can unjar or rejar the classes and source files as you wish.

    unjar

    jar -xvf abc.jar 
    

    jar

    jar cf abc.jar input-files
    

    http://docs.oracle.com/javase/tutorial/deployment/jar/build.html

提交回复
热议问题