修改jar文件 [英] Modifying a jar file

查看:154
本文介绍了修改jar文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个jar文件,在html文件中用作applet。我想修改jar文件的内容并重建jar文件,以便html可以正常使用新的jar文件。我如何做到这一点?



我已经尝试过解压缩使用7zip nad修改源码并创建了新的jar。但是当我在html中使用它时,会显示一些java.lang.Classnotfound错误

解决方案

你可以解开或重新启动类和源代码文件如您所愿。



unjar

  jar -xvf abc。 jar 

jar

  jar cf abc.jar input-files 

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


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 jar file. How can i do this??

I already tried unzipping using 7zip nad modified the source and created the new jar. But when i use it in html it shows some java.lang.Classnotfound error

解决方案

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

这篇关于修改jar文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆