Java JarURLConnection .getCertificates ()
Syntax
JarURLConnection.getCertificates() has the following syntax.
public Certificate [] getCertificates() throws IOException
Example
In the following code shows how to use JarURLConnection.getCertificates() method.
import java.net.JarURLConnection;
import java.net.URL;
import java.security.cert.Certificate;
import java.util.jar.Attributes;
/* w w w .j a v a 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();
Attributes attrs = conn.getAttributes();
Certificate[] certs = conn.getCertificates();
}
}