Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for zipUrl (0.53 sec)

  1. src/main/java/org/codelibs/core/zip/ZipFileUtil.java

         *
         * @param zipUrl
         *            URL pointing to the Zip file. Must not be {@literal null}.
         * @return A <code>ZipFile</code> for reading the specified Zip file.
         */
        public static ZipFile toZipFile(final URL zipUrl) {
            assertArgumentNotNull("zipUrl", zipUrl);
    
            return create(new File(toZipFilePath(zipUrl)));
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/TraversalUtil.java

                    }
                }
    
                this.rootPackage = rootPackage;
                this.rootDir = rootDir;
                this.zipUrl = zipUrl;
                this.prefix = prefix;
            }
    
            private void loadFromZip(final URL zipUrl) {
                final ZipInputStream zis = new ZipInputStream(URLUtil.openStream(zipUrl));
                try {
                    ZipEntry entry = null;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top