我有一个Java程序正在尝试通过套接字发出HTTP请求。出于某种原因,字符串中的斜杠将其弄乱了。

我有一个try/catch,一旦使用带有斜线的字符串创建套接字,它就会被捕获。

        Socket socket = new Socket("www.google.ca", port);

回复
HTTP/1.1 400 Bad Request
Content-Length: 54
Content-Type: text/html; charset=UTF-8
Date: Fri, 14 Oct 2016 06:05:43 GMT
Connection: close

<html><title>Error 400 (Bad Request)!!1</title></html>

现在带有斜线
        Socket socket = new Socket("www.google.ca/", port);

被抓到。

我的请求。
            outputStream.println("GET / HTTP/1.1");
            outputStream.println("");
            outputStream.flush();

我正在尝试使用带有斜杠的主机名和路径访问特定站点。怎么了?

最佳答案

第一个错误HTTP/1.1 400 Bad Request是由于错误的请求路径而发生的。不知道您的代码就很难找到原因。

就像安迪·特纳(Andy Turner)所说的那样,发生第二个错误,因为主机名错误。 InetAddress无法使用斜杠解析主机名。

这个例子对我有用:

public static void main(String[] args) throws Exception {
    Socket s = new Socket(InetAddress.getByName("google.com"), 80);
    PrintWriter pw = new PrintWriter(s.getOutputStream());
    pw.println("GET /about/ HTTP/1.1"); // here comes the path
    pw.println("f-Modified-Since: Wed, 1 Oct 2017 07:00:00 GMT");
    pw.println("");
    pw.flush();
    BufferedReader br = new BufferedReader(new InputStreamReader(s.getInputStream()));
    String line;
    while((line = br.readLine()) != null){
        System.out.println(line);
    }
    br.close();
}

您只需要在此行中设置路径:
pw.println("GET /about HTTP/1.1");

08-28 17:50