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
Post a Comment