Skip to content

Commit 425ef06

Browse files
eirbjoLance Andersen
authored and
Lance Andersen
committedApr 12, 2023
8303923: ZipOutStream::putEntry should include an apiNote to indicate that the STORED compression method should be used when writing directory entries
Reviewed-by: lancea, alanb
1 parent 2bbbff2 commit 425ef06

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed
 

‎src/java.base/share/classes/java/util/zip/ZipOutputStream.java

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -191,6 +191,21 @@ public void setLevel(int level) {
191191
* <p>
192192
* The current time will be used if the entry has no set modification time.
193193
*
194+
* @apiNote When writing a directory entry, the STORED compression method
195+
* should be used and the size and CRC-32 values should be set to 0:
196+
*
197+
* {@snippet lang = "java":
198+
* ZipEntry e = new ZipEntry(entryName);
199+
* if (e.isDirectory()) {
200+
* e.setMethod(ZipEntry.STORED);
201+
* e.setSize(0);
202+
* e.setCrc(0);
203+
* }
204+
* stream.putNextEntry(e);
205+
*}
206+
*
207+
* This allows optimal performance when processing directory entries.
208+
*
194209
* @param e the ZIP entry to be written
195210
* @throws ZipException if a ZIP format error has occurred
196211
* @throws IOException if an I/O error has occurred

0 commit comments

Comments
 (0)
Please sign in to comment.