File tree 1 file changed +16
-1
lines changed
src/java.base/share/classes/java/util/zip
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -191,6 +191,21 @@ public void setLevel(int level) {
191
191
* <p>
192
192
* The current time will be used if the entry has no set modification time.
193
193
*
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
+ *
194
209
* @param e the ZIP entry to be written
195
210
* @throws ZipException if a ZIP format error has occurred
196
211
* @throws IOException if an I/O error has occurred
You can’t perform that action at this time.
0 commit comments