Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
SslClientCmd.java - SSL Client Command Example
How to create an SSL client program to run like a command?
✍: FYIcenter
Here is an SSL client example program you can run like a command to
communicate to any HTTPS web server:
// Copyright (c) FYIcenter.com
import java.net.*;
import java.io.*;
import javax.net.ssl.*;
public class SslClientCmd {
public static void main(String[] args) throws Exception {
String host = "www.oracle.com";
int port = 443;
String url = "http://www.oracle.com/index.html";
if (args.length < 3) {
System.out.println("USAGE: java SslClientCmd host port url");
System.exit(-1);
}
host = args[0];
port = Integer.parseInt(args[1]);
url = args[2];
SSLSocketFactory factory = (SSLSocketFactory)SSLSocketFactory.getDefault();
SSLSocket socket = (SSLSocket)factory.createSocket(host, port);
socket.startHandshake();
PrintWriter out = new PrintWriter(new BufferedWriter(
new OutputStreamWriter(socket.getOutputStream())));
out.println("GET "+url+" HTTP/1.1");
out.println();
out.flush();
BufferedReader in = new BufferedReader(new InputStreamReader(
socket.getInputStream()));
String line = in.readLine();
while (line.length()>0) {
System.out.println(line);
line = in.readLine();
}
in.close();
out.close();
socket.close();
}
}
You can compile and run the above example in a command window:
\fyicenter>\local\jdk-1.8.0\bin\javac SslClientCmd.java \fyicenter>\local\jdk-1.8.0\bin\java SslClientCmd USAGE: java SslClientCmd host port url \fyicenter>\local\jdk-1.8.0\bin\java SslClientCmd www.oracle.com 443 http://www.oracle.com/index.html | more HTTP/1.1 200 OK Server: Oracle-Application-Server-11g Content-Language: en-US Content-Type: text/html; charset=UTF-8 Content-Length: 42129 ... \fyicenter>\local\jdk-1.8.0\bin\java SslClientCmd www.oracle.com 443 http://www.oracle.com/junk.html HTTP/1.1 404 Not Found Server: Oracle-Application-Server-11g Accept-Ranges: bytes Content-Length: 2720 Content-Type: text/html; charset=UTF-8 ...
⇒ Create SSL Server Certificate with "keytool"
⇐ SslCipherList.java - SSL Cipher List
2018-03-31, ∼2796🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
Apache Log4j API provides the interface that applications should code to and provides the adapter co...