解析输入流 返回二进制数据 工具类
/** * * 解析输入流 返回二进制数据 * @param input * @return * @throws IOException */ public static byte[] read(InputStream input) throws IOException { ByteArrayOutputStream output=new ByteArrayOutputStream(); byte[] data=new byte[1024]; int len=0; while((len=input.read(data))!=-1){ output.write(data, 0, len); } output.close(); return output.toByteArray(); }