Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
GetServerCertificate.java - Get Server Certificate
How to get the server certificate of a HTTPS Website?
✍: FYIcenter
If you created a URL object with "new java.net.URL(...)",
you can use the getServerCertificates() method on the HttpsURLConnection class
to get the server certificate of a HTTPS Website:
// Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; import java.security.cert.*; public class GetServerCertificate { public static void main(String[] args) throws Exception { URL url = new URL("https://www.oracle.com/"); System.out.println(); System.out.println("URL Class Name: "+url.getClass().getName()); URLConnection con = url.openConnection(); System.out.println("Connection Class Name: "+con.getClass().getName()); HttpsURLConnection scon = (HttpsURLConnection) con; scon.connect(); Certificate[] certs = scon.getServerCertificates(); System.out.println("Server Certificate: "+certs[0].toString()); } }
You can compile and run the above example in a command window:
\fyicenter>\local\jdk-1.8.0\bin\javac GetServerCertificate.java \fyicenter>\local\jdk-1.8.0\bin\java GetServerCertificate URL Class Name: java.net.URL Connection Class Name: sun.net.www.protocol.https.HttpsURLConnectionImpl Server Certificate: [ [ Version: V3 Subject: CN=www.oracle.com, OU=Content Management Services IT, O=Oracle Corporation, L=Redwood Shores, ST=California, C=US Signature Algorithm: SHA256withRSA, OID = 1.2.840.113549.1.1.11 Key: Sun RSA public key, 2048 bits modulus: 266007053589262198503910002916415210613237870471654508456672717076127... public exponent: 65537 Validity: [From: Thu Apr 13 20:00:00, To: Wed Mar 28 19:59:59 EDT 2018] Issuer: CN=GeoTrust SSL CA - G3, O=GeoTrust Inc., C=US SerialNumber: [ 5d547be2 37a12187 1c8849d9 09f1e3ee] ...
Â
2018-03-31, 1906👍, 0💬
Popular Posts:
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
How to perform XML Schema validation with dom\Writer.java provided in the Apache Xerces package? You...
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module. JDK 11 Hotspot Agent...
JDK 11 jdk.aot.jmod is the JMOD file for JDK 11 Ahead-of-Time (AOT) Compiler module. JDK 11 AOT Comp...