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

I am reorganizing our java code base and wanted to compare our resultant jar files.

When I build in the old source tree, I get a jar file size of 3360081.

In the new source tree it is 3360128.

I do a "jar tvf jarfile" and then strip the dates out of the file.

The listing looks like this:

     0 Mon Mar 16 10:41:16 EDT 2009 META-INF/
   102 Mon Mar 16 10:41:14 EDT 2009 META-INF/MANIFEST.MF
     0 Mon Mar 16 10:41:14 EDT 2009 decodes/

After I strip the dates, the listing looks like this:

     0  META-INF/
   102  META-INF/MANIFEST.MF
     0  decodes/

The two jar listings are identical.

What would cause a 47 byte difference in "identical" jar files?

I am running the compile on RedHat Linux 4.

share|improve this question
What are the differences between the "old" and "new" source tree? Did you rename anything? – panschk Mar 16 '09 at 16:06

3 Answers

File modification times of the compiled files are most probably the reason. Also, your class files might actually be different. If you reorganized your package structure they most definitely will.

share|improve this answer
The file modification times are stripped out of the jar listing. There is only filesize and classnames. – Mel Mar 16 '09 at 15:34
1  
Who cares about the listing? The modification times are stored inside the JAR file. They obviously change when you recompile your code and create a new JAR file. – Bombe Mar 16 '09 at 16:31
Agree, the times are stored and compressed, so the JAR size changes. – ReneS Mar 17 '09 at 4:45

It's probably not the case - but by any chance are you using different compiler versions (even minor version differences) while compiling the two source bases?

share|improve this answer

If you use BeyondCompare (or similar) it will diff your jar files and identify the different files within the archives (down to the line/character differences for a text file, or just highlight the binary files that have changed).

(I don't think file modification times are stored in their text representation in the .jar format, and I don't believe they'll contribute to .jar file sizes)

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.