Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toZipFilePath (0.08 sec)

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

            return create(new File(toZipFilePath(zipUrl)));
        }
    
        /**
         * Returns the path of the Zip file specified by the URL.
         *
         * @param zipUrl
         *            URL pointing to the Zip file. Must not be {@literal null}.
         * @return The path of the Zip file specified by the URL.
         */
        public static String toZipFilePath(final URL 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

            addTraverserFactory("jar", JarFileTraverser::new);
            addTraverserFactory("zip", (url, rootPackage,
                    rootDir) -> new JarFileTraverser(JarFileUtil.create(new File(ZipFileUtil.toZipFilePath(url))), rootPackage, rootDir));
            addTraverserFactory("code-source",
                    (url, rootPackage, rootDir) -> new JarFileTraverser(URLUtil.create("jar:file:" + url.getPath()), rootPackage, rootDir));
    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