JarURLConnection.getJarFileURL() has the following syntax.
public URL getJarFileURL()
In the following code shows how to use JarURLConnection.getJarFileURL() method.
import java.net.JarURLConnection; import java.net.URL; /*from w w w . ja va 2 s .c o m*/ 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); } }
The code above generates the following result.