Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a jar file which has two class files per java file.

Java:

Foo.java
Bar.java

Classfile:

Foo.class
Foo.class
Bar.class
Bar.class

I have verified that there is only one java files per class. The java files do not any contain inner classes. I am using the ant jar-task to create the jar file. Before I execute the task, there is only one class file per class in the build directory.

I see the double class files with jar -tf jarfile.jar or when I view it in a zip program. When I unpack the files, the zip program asks if it should overwrite the existing file.

How can this happen?

share|improve this question
Maybe you have compiled the source two times? – RoflcoptrException Aug 19 '11 at 14:20
3  
What happens when you extract the jar? – Stoney Aug 19 '11 at 14:24
How does the Foo.java look? – aioobe Aug 19 '11 at 14:24
1  
Any information on the build process you're using? – Thomas Aug 19 '11 at 14:24
2  
How are you creating the jar? – Stoney Aug 19 '11 at 14:24
show 2 more comments

2 Answers

Are you using the Ant Jar task? If so then you can most definitely get duplicate files in the same jar file. The duplicate attribute is used to stop that.

Please note that the zip format allows multiple files of the same fully-qualified name to exist within a single archive. This has been documented as causing various problems for unsuspecting users. If you wish to avoid this behavior you must set the duplicate attribute to a value other than its default, "add".

From the Ant Manual Page: http://ant.apache.org/manual/Tasks/jar.html

share|improve this answer
I was able to localize the problem with duplicate="fail". I am aware that I could use duplicate="preserve", but I am more interested in how this situation could occur. – yottamoto Aug 19 '11 at 14:45
I came across the issue by having the same files from different locations (created during a build) being added to the jar file. – Ken Brittain Aug 19 '11 at 15:07
up vote 0 down vote accepted

I think I found the problem. This is the jar task:

    <jar basedir="${build.class.dir}" jarfile="${dist.dir}/${subproject}.jar">
        <fileset dir="${build.class.dir}" />
    </jar>

As I read in the Ant website

This task forms an implicit FileSet and supports most attributes of (dir becomes >basedir) as well as the nested , and elements.

So it would seem that either the tag or basedir is uneccessary. At least it works.fine if I comment out the fileset tag.

Thanks for your help and pointers!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.