我是靠谱客的博主 孝顺鸭子,最近开发中收集的这篇文章主要介绍获取response里的数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

String out=null;
try {
ServletOutputStream os = servletResponse.getOutputStream();
Field ob= ReflectionUtils.findField(os.getClass(),"ob");
ob.setAccessible(true);
Object obValue= ReflectionUtils.getField(ob,os);
Field bb= ReflectionUtils.findField(obValue.getClass(),"bb");
bb.setAccessible(true);
Object bbValue= ReflectionUtils.getField(bb,obValue);
Field hb= ReflectionUtils.findField(bbValue.getClass(),"hb");
hb.setAccessible(true);
Object value= ReflectionUtils.getField(hb,bbValue);
out= null==value?null:new String((byte[])value, Charsets.UTF_8);
}catch (Exception e){
logger.debug("can not get response data",e);
out="ERROR:"+e.getMessage();
}
return out;

 

最后

以上就是孝顺鸭子为你收集整理的获取response里的数据的全部内容,希望文章能够帮你解决获取response里的数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部