Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
1616280e
Commit
1616280e
authored
Jun 17, 2004
by
Anthony Green
Committed by
Anthony Green
Jun 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZipFile.getInputStream returns null if entry not found.
From-SVN: r83293
parent
cfb6b4b8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
libjava/ChangeLog
+3
-0
libjava/java/util/zip/ZipFile.java
+12
-2
No files found.
libjava/ChangeLog
View file @
1616280e
2004
-
06
-
17
Anthony
Green
<
green
@
redhat
.
com
>
*
java
/
util
/
zip
/
ZipFile
.
java
(
getInputStream
):
Return
null
if
entry
not
found
.
*
gnu
/
gcj
/
runtime
/
VMClassLoader
.
java
(
init
):
Add
extension
directory
contents
to
the
class
path
.
...
...
libjava/java/util/zip/ZipFile.java
View file @
1616280e
...
...
@@ -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
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment