Updating file in a jar throws ZipException

后端 未结 3 512
小蘑菇
小蘑菇 2021-01-18 00:13

I\'m trying to update a file in an existing jar (in this example antlr) using the command:

jar -uf antlrworks-1.2.3.jar org/antlr/codegen/templates/Java/Java         


        
相关标签:
3条回答
  • 2021-01-18 00:45

    You can do the same operation with the Ant jar task.

    <jar duplicate="preserve" jarfile="...">
       your files
    </jar>
    

    the duplicate attribute with the preserve value will take care of the duplicate entries.

    As mentioned here, the update attribute with the value “preserve” does tell you that duplicates exist, in this form:

     aPath/aFile already added, skipping
    

    If your file is on top of the list the jar task has to pick tp build itself, your new file will be taken into account.

    0 讨论(0)
  • 2021-01-18 00:51

    You're trying to do the right thing, but the jar file is problematic - it's got the same entry twice :( (This is legal for a zip file, but not really helpful - and as you can see, it makes jar complain.)

    If you run

    jar tvf antlrworks-1.2.3.jar > contents
    

    and then look at the generated contents file you'll see that there are various duplicate files. You should probably report this to the antlr project (after checking they don't already know).

    As a workaround, you can extract the contents of the jar file, jar it up again, and then you'll have a "working" jar file you can update. (If you only need to do this once, you can just extract, put the file you want in there, and then jar the whole lot up rather than updating it afterwards.)

    0 讨论(0)
  • 2021-01-18 00:53

    If you're on OS X, try the Jar Inspector application. I used it to patch a javascript bug in wicket. You can open a jar file, and it lists all the contents. Navigate to the file you want to save (in this case, a .js file) and modify the file, then save the contents, and it takes care of modifying the .jar file for you. Not sure if this would work with .java files or not.

    0 讨论(0)
提交回复
热议问题