解析java中的http响应字节

时间:2014-10-24 14:27:49

标签: java parsing http byte response

我试图在java中解析byte[],这是HTTP响应的表示。有一个问题Is there any simple http response parser for Java?,这正是我的问题,但接受的答案对我没有帮助。如果我看http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/org/apache/http/io/HttpMessageParser.html,我不明白这对我有什么帮助。

2 个答案:

答案 0 :(得分:9)

我希望这能让你开始

String s = "HTTP/1.1 200 OK\r\n" +
        "Content-Length: 100\r\n" +
        "Content-Type: text/plain\r\n" +
        "Server: some-server\r\n" +
        "\r\n";
SessionInputBufferImpl sessionInputBuffer = new SessionInputBufferImpl(new HttpTransportMetricsImpl(), 2048);
sessionInputBuffer.bind(new ByteArrayInputStream(s.getBytes(Consts.ASCII)));
DefaultHttpResponseParser responseParser = new DefaultHttpResponseParser(sessionInputBuffer);
HttpResponse response = responseParser.parse();
System.out.println(response);

此代码生成以下输出:

HTTP/1.1 200 OK [Content-Length: 100, Content-Type: text/plain, Server: some-server]

答案 1 :(得分:0)

检查出来:https://github.com/ipinyol/proxy-base

这是一个简单的高度可配置的http代理。类org.mars.proxybase.ProxyThread的readHeader方法在给定DataInputStream(按字节读取)的情况下解析http头,并返回Header类型的对象以及有关头的信息。

此外,您可能知道要么在标头中定义了内容长度,要么您有必须通过http响应中的块读取的分块数据。同一类的readContent和readContentByChunk方法执行内容的读取。您可以自己探索代码并进行相应的修改。