Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
HttpsUrlReader.java - Reading Data from HTTPS URL
How to read data from an HTTPS URL with jsse.jar? I want to see a Java program example.
✍: FYIcenter
jsse.jar, Java Secure Socket Extension, allows you to communicate
securely with an SSL-enabled web server by using the "https"
URL protocol.
Here is an example program, HttpsUrlReader.java, that can be used to read data from an HTTPS URL with jsse.jar:
// Copyright (c) FYIcenter.com import java.net.*; import java.io.*; public class HttpsUrlReader { public static void main(String[] args) throws Exception { URL url = new URL("https://www.oracle.com/"); BufferedReader in = new BufferedReader( new InputStreamReader(url.openStream())); String line; while ((line = in.readLine()) != null) System.out.println(line); in.close(); } }
You can compile and run the above example in a command window:
\fyicenter>\local\jdk-1.8.0\bin\javac HttpsUrlReader.java \fyicenter>\local\jdk-1.8.0\bin\java HttpsUrlReader > oracle.html
Notes that:
2018-03-24, 1175👍, 0💬
Popular Posts:
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
What Is ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is the JAR files of ojdbc.jar, JD...
What Is xml-apis.jar in xml-commons External 1.4.01? xml-apis.jar in xml-commons External 1.4.01 is ...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
What Is Apache XMLBeans-2.6.0.zip file? Apache XMLBeans-2.6.0.zip file is the distribution package Z...