Index: java/util/zip/ZipFile.java =================================================================== --- java/util/zip/ZipFile.java (revision 1011) +++ java/util/zip/ZipFile.java (revision 1075) @@ -105,7 +105,7 @@ public ZipFile(File file) throws ZipException, IOException { this.raf = new RandomAccessFile(file, "r"); - this.name = file.getName(); + this.name = file.getPath(); } /** @@ -134,7 +134,7 @@ ("OPEN_DELETE mode not supported yet in java.util.zip.ZipFile"); } this.raf = new RandomAccessFile(file, "r"); - this.name = file.getName(); + this.name = file.getPath(); } /**