首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

android中将读来的xml inputstream打印为日志

2012-08-02 
android中将读回的xml inputstream打印为日志if(StringUtils.IsShowLog) {try {ByteArrayOutputStream os

android中将读回的xml inputstream打印为日志

if(StringUtils.IsShowLog) {

try {

ByteArrayOutputStream os=new ByteArrayOutputStream();

byte[] b = new byte[4096]; ?

for (int n; (n = is.read(b)) != -1;) {

? ?StringUtils.logD(tag, ""+new String(b, 0, n));

? ?os.write(b, 0, n);

}

InputStream is_temp = new ByteArrayInputStream(os.toByteArray());

is = is_temp;

} catch (IOException e1) {

e1.printStackTrace();

} ??

}

热点排行