Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toJarFilePath (0.98 sec)

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

            }
            return create(new File(toJarFilePath(jarUrl)));
        }
    
        /**
         * Returns the path of the JAR file specified by the URL.
         *
         * @param jarUrl the URL of the JAR file (must not be {@literal null})
         * @return the path of the JAR file specified by the URL
         */
        public static String toJarFilePath(final URL jarUrl) {
            assertArgumentNotNull("jarUrl", jarUrl);
    
    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/ResourceUtil.java

                dir = new File(getFileName(url));
                for (int i = 0; i < num; ++i) {
                    dir = dir.getParentFile();
                }
            } else {
                dir = new File(JarFileUtil.toJarFilePath(url));
            }
            return dir;
        }
    
        /**
         * Converts the resource URL to an external form.
         *
         * @param url
         *            The resource URL. Must not be {@literal null}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 14.7K bytes
    - Viewed (0)
Back to top