public static byte[] readAsByteArray(InputStream input) throws IOException { byte[] bytes = new byte[input.available()]; try{ input.read(bytes); }catch(IOException e){ System.out.println("ERROR"); } return bytes;}大家看下这样读取输入流的数据对不对,和其它IO流的使用方式比较 有什么不足的地方?欢迎大家给出意见
添加回答
举报
0/150
提交
取消