Java JarURLConnection .getJarEntry ()
Syntax
JarURLConnection.getJarEntry() has the following syntax.
public JarEntry getJarEntry() throws IOException
Example
In the following code shows how to use JarURLConnection.getJarEntry() method.
// www . j a va 2 s. c o 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());
}
}