码迷,mamicode.com
首页 > 其他好文 > 详细

解析字符串

时间:2016-03-09 14:13:58      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

解析字符串:
封装一个解析字符串的工具类,方便调用

public static String readStream(InputStream is){
  try{
       ByteArrayOutputStream baos = new ByteArrayOutputStream();
       int len = 0;
       byte[] buffer = new byte[1024];
       while((len = is.read(buffer))!=-1){
          baos.write(buffer,0,len);
       }
     is.close();
     bos.close();
     byte[] result = baos.toByteArray();
     String temp = new String(result);
    return temp;
   }cath(IOException e){
     e.printStackTrace();
    return"获取失败";

   }
}

解析字符串

标签:

原文地址:http://www.cnblogs.com/caidongyu/p/5257950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!