android的工具类

来源:互联网 发布:cool edit for mac版 编辑:程序博客网 时间:2024/06/04 11:29

android中单位的转换dp转成px

这里写图片描述

解析流的数据,返回字符串

public class StreamTool {

//解析流的数据,返回字符串 public static String decodeStream(InputStream in) throws IOException {    ByteArrayOutputStream baos = new ByteArrayOutputStream();    int len=0;    byte[] buf = new byte[1024];    while((len=in.read(buf))>0){        baos.write(buf, 0, len);    }    in.close();    baos.close();    return baos.toString();}

}

0 0
原创粉丝点击