您的位置:首页 > 其它

How can I add files to a Jar file? (or add a file to a zip archive)

2017-11-10 16:00 411 查看
https://stackoverflow.com/questions/12239764/how-can-i-add-files-to-a-jar-file











M.java

class M{
public static void main(String args[]){
System.out.println("Hello, world!");
}
}


 MANIFEST.MF

Manifest-Version: 1.0
Created-By: 1.8.0_144 (Oracle Corporation)
Main-Class: M


  其实可以接着上一篇文章。。

加入了一个知识点,java 运行jar包。

https://jingyan.baidu.com/article/ff42efa904b4d7c19e220282.html



这个命令,将MANIFEST.MF 这个文件添加到了f.jar 中!!

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐