Java JarURLConnection .getJarFileURL ()
Syntax
JarURLConnection.getJarFileURL() has the following syntax.
public URL getJarFileURL()
Example
In the following code shows how to use JarURLConnection.getJarFileURL() method.
import java.net.JarURLConnection;
import java.net.URL;
// ww w . j a v a2 s.c om
public class Main {
public static void main(String[] argv) throws Exception {
URL url = new URL("jar:file:/c://my.jar!/");
JarURLConnection conn = (JarURLConnection) url.openConnection();
url = conn.getJarFileURL();
System.out.println(url);
}
}