我正在使用Apache HTTP Client并尝试从响应中提取内容......
我在名为' response'。
的HTTP响应对象中有响应现在,如何从HTTPResponse对象中提取以下内容?? -
(1)响应内容为byte [] (2)内容长度 (3)哑剧型 (4)Charset
答案 0 :(得分:1)
您需要获得HttpEntity
并执行getContentLenght()
和getContentType();
。这是apache tutorial
答案 1 :(得分:1)
HttpEntity entity = response.getEntity();
InputStream instream = entity.getContent();
instream.read();
这是主要代码。 您可以在以下位置查看示例:httpcomponents-client-4.1.3 \ examples \ org \ apache \ http \ examples \ client