aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util/zip
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2004-06-17 13:53:11 +0000
committerAnthony Green <green@gcc.gnu.org>2004-06-17 13:53:11 +0000
commit1616280e701452fe2ee16e6e9ae88bd13de68bed (patch)
tree515152a9de25a8f25f7eb4063674565497511b6f /libjava/java/util/zip
parentcfb6b4b8c3c01be5a1d43695c9d2988838f2254a (diff)
downloadgcc-1616280e701452fe2ee16e6e9ae88bd13de68bed.zip
gcc-1616280e701452fe2ee16e6e9ae88bd13de68bed.tar.gz
gcc-1616280e701452fe2ee16e6e9ae88bd13de68bed.tar.bz2
ZipFile.getInputStream returns null if entry not found.
From-SVN: r83293
Diffstat (limited to 'libjava/java/util/zip')
-rw-r--r--libjava/java/util/zip/ZipFile.java14
1 files changed, 12 insertions, 2 deletions
diff --git a/libjava/java/util/zip/ZipFile.java b/libjava/java/util/zip/ZipFile.java
index 50f489f..25b5785 100644
--- a/libjava/java/util/zip/ZipFile.java
+++ b/libjava/java/util/zip/ZipFile.java
@@ -408,8 +408,18 @@ public class ZipFile implements ZipConstants
* uncompressed data. Normally zip entry should be an entry
* returned by getEntry() or entries().
*
+ * This implementation returns null if the requested entry does not
+ * exist. This decision is not obviously correct, however, it does
+ * appear to mirror Sun's implementation, and it is consistant with
+ * their javadoc. On the other hand, the old JCL book, 2nd Edition,
+ * claims that this should return a "non-null ZIP entry". We have
+ * chosen for now ignore the old book, as modern versions of Ant (an
+ * important application) depend on this behaviour. See discussion
+ * in this thread:
+ * http://gcc.gnu.org/ml/java-patches/2004-q2/msg00602.html
+ *
* @param entry the entry to create an InputStream for.
- * @return the input stream.
+ * @return the input stream, or null if the requested entry does not exist.
*
* @exception IOException if a i/o error occured.
* @exception ZipException if the Zip archive is malformed.
@@ -420,7 +430,7 @@ public class ZipFile implements ZipConstants
String name = entry.getName();
ZipEntry zipEntry = (ZipEntry) entries.get(name);
if (zipEntry == null)
- throw new NoSuchElementException(name);
+ return null;
long start = checkLocalHeader(zipEntry);
int method = zipEntry.getMethod();