弱笔琉璃

导航

Content has been consumed

  1. if(response.getEntity() != null && response.getEntity().getContent() != null)  
  2. {  
  3.                 message = IOUtils.toString(response.getEntity().getContent());  
  4. }
会报Content has been consumed错误

这个问题是多次调用HttpEntity.getContent()导致的, Entity中的内容只能读取一次, 参考如下:


You can retrieve the content from the entity only once. If you have 
already extracted the content somewhere, and you try to fetch it 
again, it will throw this IllegalStateException. Check you code and 
make sure that you make this call only once.


看一下:http://blog.csdn.net/boonya/article/details/42740235




来自为知笔记(Wiz)


posted on 2016-04-03 22:36  弱笔琉璃  阅读(645)  评论(0编辑  收藏  举报