Java JarURLConnection .getAttributes ()
Syntax
JarURLConnection.getAttributes() has the following syntax.
public Attributes getAttributes() throws IOException
Example
In the following code shows how to use JarURLConnection.getAttributes() method.
import java.net.JarURLConnection;
import java.net.URL;
import java.util.jar.Attributes;
//from ww w . j a v a 2 s . co 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();
Attributes attrs = conn.getAttributes();
}
}