Http客户端由于某种原因挂起

时间:2013-01-28 20:56:38

标签: java http netbeans httpclient wampserver

使用Netbeans处理HTTP客户端程序。

到目前为止,我已经在我的HttpClient类中找到了这个:

public class MyHttpClient {

MyHttpRequest request;
String host;

public MyHttpResponse execute(MyHttpRequest request) throws IOException {

    //Creating the response object
    MyHttpResponse response = new MyHttpResponse();

    //Get web server host and port from request.
    String host = request.getHost();
    int port = request.getPort();

    //Check 1: HOST AND PORT NAME CORRECT!
    System.out.println("host: " + host + " port: " + String.valueOf(port));

    //Get resource path on web server from requests.
    String path = request.getPath();

    //Check 2: ENSURE PATH IS CORRECT!
    System.out.println("path: " + path);

    //Open connection to the web server
    Socket s = new Socket(host, port);

    //Get Socket input stream and wrap it in Buffered Reader so it can be read line by line.
    BufferedReader inFromServer = new BufferedReader(new InputStreamReader(s.getInputStream()));

    //Get Socket output stream and wrap it in a DataOutputStream so it can be written to line by line.
    DataOutputStream outToServer = new DataOutputStream(s.getOutputStream());

    //Get request method
    String method = request.getMethod();

    //Check 3: ENSURE REQUEST IS CORRECT GET/POST!
    System.out.println("Method: " + method);

    //GET REQUEST

    if(method.equalsIgnoreCase("GET")){
        //Send request to server
        outToServer.writeChars("GET " + path + " HTTP/1.0");

        //HTTP RESPONSE
        System.out.println("WAITING FOR RESPONSE!");

        String line = inFromServer.readLine();
        System.out.println("Line: " + line);


    }

    //Returning the response
    return response;

}

}

我已经检查过以确保我的请求行正确构造,如整个打印语句中所示。但是,当我到达这一行时程序挂起:

System.out.println("WAITING FOR RESPONSE!");

        String line = inFromServer.readLine();

我不知道为什么......我的服务器是localhost WAMP。它正常运行。我有我要求存储在localhost上的文件。我可以通过浏览器访问它。

任何想法可能会出错?

1 个答案:

答案 0 :(得分:1)

没有CR或LF是你的问题之一。你应该写ASCII字符,可能是主机头。

outToServer.write(("GET " + path + " HTTP/1.0\r\n").getBytes("ASCII"));
outToServer.write("Host: myhost.com\r\n\r\n".getBytes("ASCII"));
outToServer.flush();