JarURLConnection.getJarEntry() has the following syntax.
public JarEntry getJarEntry() throws IOException
In the following code shows how to use JarURLConnection.getJarEntry() method.
/* w w w. j a v a 2s. co m*/ import java.net.JarURLConnection; import java.net.URL; import java.util.jar.JarEntry; 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(); JarEntry jarEntry = conn.getJarEntry(); System.out.println(jarEntry.getName()); } }