Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 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)
Back to top