You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,8 @@ But that's not all it does. That's just what that one comment says. Some other f
31
31
- Naive: Scans only for `LocalFileHeader` values from the front of the file, the fastest implementation, but obviously naive
32
32
- JVM: Matches the behavior of the JVM's ZIP parser, including a number of odd edge cases. Useful for opening JAR files to mirror `java -jar <path>` behavior.
33
33
- Inputs do not have to be on-disk to be read, you can supply zip data in-memory.
34
+
- Tracks data in front of ZIP contents as `ZipArchive.getPrefixData()`
35
+
- Useful for cases like keeping track of the executable header of Jar2Exe archives.
34
36
35
37
## Usage
36
38
@@ -93,7 +95,7 @@ There is also a `ZipFile` delegating reader `AdaptingZipReader` but it should pr
93
95
94
96
## Building
95
97
96
-
Due to some `sun.misc.Unsafe` hacks _(For performance and long addressing)_, you will get compiler warnings when first opening the project in IntelliJ.
98
+
Due to some `sun.misc.Unsafe` hacks _(For faster deflate performance)_, you will get compiler warnings when first opening the project in IntelliJ.
97
99
You can resolve this by changing the compiler target:
0 commit comments