我正在尝试使用类似于 telnet 的 java 套接字类编写一个简单的 Web 客户端。我希望用户能够与任何端口上的任何 Web 服务器自由通信。我还想为 HTTP/HTTPS 通信提供一些内置支持。我的 HTTP 部分工作得很好,但我在使用 HTTPS 时遇到了很多麻烦。
我想使用 Java 的 SSLSocket 类。我查看了很多网站和示例,并整理了以下代码来检索 Google 的主页。
package httpssandbox;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.security.cert.Certificate;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLSession;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;
public class HttpsSandbox {
static int port = 443;
static String addressString = "google.com";
static InetAddress address;
SSLSocket socket;
PrintWriter out;
BufferedReader in;
public static void main(String[] args) {
System.out.println("Connecting to: " + addressString);
System.out.println("Using port: " + port);
//Connect to the website
HttpsSandbox hs = new HttpsSandbox();
hs.connect();
}
public void connect(){
try {
//Resolve IP address
address = InetAddress.getByName(addressString);
System.out.println("IP address: " + address.getHostAddress());
//Connect using a secure SSL conenction
SSLSocketFactory socketf = HttpsURLConnection.getDefaultSSLSocketFactory();
socket = (SSLSocket) socketf.createSocket("google.com", port);
socket.startHandshake();
printSocketInfo();
//Get the input and output streams of the socket
out = new PrintWriter(socket.getOutputStream());
in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
sendHTTPGET();
System.out.println(receive());
} catch (UnknownHostException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
}
}
private void sendHTTPGET(){
//Construct a string with the message
out.println("GET / HTTP/1.1");
out.println();
out.flush();
}
private String receive(){
String message = "";
//Wait for a message to arrive.
//Wouldn't want to miss any messages delayed by network connection
try {
while(!in.ready()) {}
while(in.ready()){
message += in.readLine() + "\n";
}
return(message);
} catch (IOException ex) {
ex.printStackTrace();
}
return null;
}
private void printSocketInfo(){
System.out.println("Socket class: "+ socket.getClass());
System.out.println(" Remote address = " + socket.getInetAddress().toString());
System.out.println(" Remote port = " + socket.getPort());
System.out.println(" Local socket address = " + socket.getLocalSocketAddress().toString());
System.out.println(" Local address = " + socket.getLocalAddress().toString());
System.out.println(" Local port = " + socket.getLocalPort());
System.out.println(" Need client authentication = " + socket.getNeedClientAuth());
SSLSession ss = socket.getSession();
System.out.println(" Cipher suite = " + ss.getCipherSuite());
System.out.println(" Protocol = " + ss.getProtocol());
System.out.println();
Certificate[] serverCerts = null;
try {
serverCerts = socket.getSession().getPeerCertificates();
} catch (SSLPeerUnverifiedException ex) {
ex.printStackTrace();
}
System.out.println("Retreived Server's Certificate Chain");
System.out.println(serverCerts.length + "Certifcates Found\n\n\n");
for (int i = 0; i < serverCerts.length; i++) {
Certificate myCert = serverCerts[i];
System.out.println("====Certificate:" + (i+1) + "====");
System.out.println("-Public Key-\n" + myCert.getPublicKey());
System.out.println("-Certificate Type-\n " + myCert.getType());
System.out.println();
}
}
}
当我运行代码时,我收到以下输出:
Connecting to: google.com
Using port: 443
IP address: 173.194.46.101
Socket class: class sun.security.ssl.SSLSocketImpl
Remote address = google.com/173.194.46.101
Remote port = 443
Local socket address = /192.168.15.126:50357
Local address = /192.168.15.126
Local port = 50357
Need client authentication = false
Cipher suite = TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Protocol = TLSv1
Retreived Server's Certificate Chain
3Certifcates Found
====Certificate:1====
-Public Key-
Sun EC public key, 256 bits
public x coord: 92211319072714844469959217656780286932148107234802524635747648609523069275349
public y coord: 36581585054743121309038603897530740476813606346857238295887416801699179162876
parameters: secp256r1 [NIST P-256, X9.62 prime256v1] (1.2.840.10045.3.1.7)
-Certificate Type-
X.509
====Certificate:2====
-Public Key-
Sun RSA public key, 2048 bits
modulus: 19713895149719550196537065661910573762693934593220985668782860735427060889140793885919063737778303548724916253252606564904177491762533295616984617709378739783748100146882543612565825906799282133510087546060971220666055151463898734279731009956582933624646298029265838127046200538496591314458940937082185029845612274584845875286257057247598474925565775989866310636633768255501748172403430876460228793912189332026189491067186811703150477068536877439284697584041860237489395099402658887745588613142391209024263265842301844868193180477031165936332420984796347731387363914950895491332976177715889375379088870580457661428329
public exponent: 65537
-Certificate Type-
X.509
====Certificate:3====
-Public Key-
Sun RSA public key, 2048 bits
modulus: 27620593608073140957439440929253438012688864718977347268272053725994928948867769687165112265058896553974818505070806430256424431940072485024407486246475597522063246121214348496326377341879755851197260401080498544606788760407243324127929930612201002157618691487713632251700065187865963692723720912135393438861302779432180613616167225206519123176430362410262429702404863434904116727055203524505580952824336979641923534005571504410997292144760317953739063178352809680844232935574095508445145910310675421726257114605895831426222686272114090063230017292595425393719031924942422176213538487957041730136782988405751614792953
public exponent: 65537
-Certificate Type-
X.509
Sending message:
GET / HTTP/1.1
Host: google.com
此时,代码在等待服务器响应时冻结。这种回应永远不会到来。我已经尝试过使用不同网站的类似 HTTP 请求的类似代码,它已经发回了一个 400 错误,我目前并不担心。我现在的目标是连接 Google 并从服务器获得响应。我不明白为什么我没有从服务器得到任何响应。
谢谢你的帮助!我到处寻找解决方案,但没有成功。
更新:
我尝试了 user3586195 发布的代码,效果很好!诀窍在于 receive() 方法。我需要从流中读取以表明我已准备好。感谢大家的帮助!