test/java/util/zip/ZipFile/GetDirEntry.java

Print this page
rev 3516 : 7021582: convert jar/zip code and tests to use try-with-resources
Reviewed-by: alanb, dholmes, sherman


  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 4206838
  26    @summary getEntry() will search for a directory
  27             even without an ending '/'.
  28  */
  29 
  30 import java.io.*;
  31 import java.util.zip.*;
  32 
  33 public class GetDirEntry {
  34     public static void main(String args[]) throws Exception {
  35         ZipFile zf = new ZipFile(new File(System.getProperty("test.src", "."),
  36                                           "input.jar"));
  37         ZipEntry ze = zf.getEntry("META-INF");
  38         if (ze == null) {
  39             throw new Exception("failed to find a directory entry");
  40         }
  41         zf.close();
  42     }
  43 }


  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 4206838
  26    @summary getEntry() will search for a directory
  27             even without an ending '/'.
  28  */
  29 
  30 import java.io.*;
  31 import java.util.zip.*;
  32 
  33 public class GetDirEntry {
  34     public static void main(String args[]) throws Exception {
  35         try (ZipFile zf = new ZipFile(new File(System.getProperty("test.src", "."),
  36                                                "input.jar"))) {
  37             ZipEntry ze = zf.getEntry("META-INF");
  38             if (ze == null) {
  39                 throw new Exception("failed to find a directory entry");
  40             }
  41         }
  42     }
  43 }