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());
  }
}




















Home »
  Java Tutorial »
    java.net »




CookieManager
CookiePolicy
CookieStore
DatagramPacket
DatagramSocket
HttpCookie
HttpURLConnection
InetAddress
JarURLConnection
MulticastSocket
ServerSocket
Socket
SocketAddress
URI
URL
URLConnection
URLDecoder
URLEncoder