StreamUtils
org.springframework.util.StreamUtils
输入
// 从字节数组到输出流
void copy(byte[] in, OutputStream out)
// 从输入流到输出流
int copy(InputStream in, OutputStream out)
// 从输入流到输出流(可设置输出编码)
void copy(String in, Charset charset, OutputStream out)
// 将指定范围输入流拷贝到输出流
long copyRange(InputStream in, OutputStream out, long start, long end)
输出
// 从输入流中读入到字节数组中
byte[] copyToByteArray(InputStream in)
// 从输入流中读入到字符串中(可设置字符编码)
String copyToString(InputStream in, Charset charset)
// 舍弃输入流中的内容
int drain(InputStream in)