How can I add files to a Jar file?

后端 未结 9 848
自闭症患者
自闭症患者 2020-12-15 19:20

I want to add a series of files previously extracted from other files(already done) to a jar. These files will be overwriting files inside the JAR. What is the most efficien

相关标签:
9条回答
  • 2020-12-15 20:14
     zip file.jar file1 file2 file3 
    

    works for me in Mac Os 10.7.5

    0 讨论(0)
  • 2020-12-15 20:19
    jar -uf my.jar file1 file2...
    jar -uf my.jar dir/
    

    or mixed

    jar -uf my.jar file dir/
    
    0 讨论(0)
  • 2020-12-15 20:24
    //Add a file in jar in a particular folder
    jar uvf <jar file name> <file to be added> <folder name inside jar>
    
    0 讨论(0)
提交回复
热议问题