From f2e541ce26c87f29e2a2798b85674725a6aa094a Mon Sep 17 00:00:00 2001 From: Anthony Green <green@redhat.com> Date: Sun, 20 Aug 2000 17:49:12 +0000 Subject: URLClassLoader.java: Find the JarEntry via the JarFile. Sun Aug 20 09:51:48 2000 Anthony Green <green@redhat.com> * java/net/URLClassLoader.java: Find the JarEntry via the JarFile. * java/net/JarURLConnection.java: getEntry doesn't take any arguments. Return null if element is null. * java/util/zip/ZipFile.java (getInputStream): Read the compressed size from the archive, not the inflated size. * java/util/jar/JarFile.java (getEntry): Don't recurse. Call java.util.zip.ZipFile.getEntry. * gij.cc (help): Change sourceware reference to sources.redhat.com. From-SVN: r35821 --- libjava/java/net/JarURLConnection.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'libjava/java/net/JarURLConnection.java') diff --git a/libjava/java/net/JarURLConnection.java b/libjava/java/net/JarURLConnection.java index 86a7291..60adfcd 100644 --- a/libjava/java/net/JarURLConnection.java +++ b/libjava/java/net/JarURLConnection.java @@ -1,4 +1,4 @@ -/* Copyright (C) 1999 Free Software Foundation +/* Copyright (C) 1999, 2000 Free Software Foundation This file is part of libgcj. @@ -148,11 +148,13 @@ public abstract class JarURLConnection extends URLConnection return null; } - public JarEntry getJarEntry (String name) - throws java.io.IOException + public JarEntry getJarEntry () throws java.io.IOException { JarFile jarfile = null; + if (element == null) + return null; + if (! doInput) throw new ProtocolException("Can't open JarEntry if doInput is false"); @@ -286,7 +288,7 @@ public abstract class JarURLConnection extends URLConnection if (element == null) len = jarFileURLConnection.getContentLength (); else - len = getJarEntry (element).getSize (); + len = getJarEntry ().getSize (); String line = "Content-length: " + len; hdrVec.addElement(line); -- cgit v1.1