equal
deleted
inserted
replaced
71 */ |
71 */ |
72 static final int ZIP64_EXTCRC = 4; // uncompressed file crc-32 value |
72 static final int ZIP64_EXTCRC = 4; // uncompressed file crc-32 value |
73 static final int ZIP64_EXTSIZ = 8; // compressed size, 8-byte |
73 static final int ZIP64_EXTSIZ = 8; // compressed size, 8-byte |
74 static final int ZIP64_EXTLEN = 16; // uncompressed size, 8-byte |
74 static final int ZIP64_EXTLEN = 16; // uncompressed size, 8-byte |
75 |
75 |
|
76 /* |
|
77 * Language encoding flag EFS |
|
78 */ |
|
79 static final int EFS = 0x800; // If this bit is set the filename and |
|
80 // comment fields for this file must be |
|
81 // encoded using UTF-8. |
|
82 |
76 private ZipConstants64() {} |
83 private ZipConstants64() {} |
77 } |
84 } |