Reputation: 46543
I'd like to know if there is a maximum number of files allowed per jar, after which you can have classpath issues like classes not taken into account?
Upvotes: 8
Views: 8918
Reputation: 64895
The jar format is just a rebranded zip format, so it inherits the limitations of that format.
The original zip format has a limit of 65535 entries, so in total in Java 6 and earlier, you can have at most that many classes or other files, combined. Many tools also include directories as entires, and this reduces the entires available for classes and other files.
In java 7, zip64 is supported, with a much higher limit.
I suspect the failure mode, however, won't be randomly missing files, but failure at jar generation time.
Upvotes: 12
Reputation: 106351
A .jar file is really just a .zip file with a special manifest. So the limits are the same as for .zip files
Upvotes: 5