读取InputStream
程序员文章站
2024-02-02 18:27:40
...
读取InputSteam中的内容
public static byte[] read(InputStream is) throws Exception {
ByteArrayOutputStream os = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = 0;
while ((len = is.read(buffer)) != -1) {
os.write(buffer, 0, len);
}
is.close();
return os.toByteArray();
}
上一篇: L1-029 是不是太胖了 (5 分)
下一篇: 图的邻接矩阵存储结构