Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toJarFile (0.04 sec)

  1. src/main/java/org/codelibs/core/jar/JarFileUtil.java

         *
         * @param jarUrl the URL of the JAR file (must not be {@literal null})
         * @return a <code>JarFile</code> to read the JAR file specified by the URL
         */
        public static JarFile toJarFile(final URL jarUrl) {
            assertArgumentNotNull("jarUrl", jarUrl);
    
            final URLConnection con = URLUtil.openConnection(jarUrl);
            if (con instanceof JarURLConnection) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/TraversalUtil.java

             * @param rootDir
             *            The root directory.
             */
            public JarFileTraverser(final URL url, final String rootPackage, final String rootDir) {
                this(JarFileUtil.toJarFile(url), rootPackage, rootDir);
            }
    
            @Override
            public boolean isExistClass(final String className) {
    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