解析字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析字符串相关的知识,希望对你有一定的参考价值。
解析字符串:
封装一个解析字符串的工具类,方便调用
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"获取失败";
}
}
以上是关于解析字符串的主要内容,如果未能解决你的问题,请参考以下文章