java - What is the maximum number of files per jar? -


i'd know if there maximum number of files allowed per jar, after can have classpath issues classes not taken account?

the jar format rebranded zip format, inherits limitations of format.

the original zip format has limit of 65535 entries, in total in java 6 , earlier, can have @ many classes or other files, combined. many tools include directories entires, , reduces entires available classes , other files.

in java 7, zip64 supported, higher limit.

i suspect failure mode, however, won't randomly missing files, failure @ jar generation time.


Comments

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -