com.github.tobato.fastdfs.proto.storage.DownloadByteArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastdfs-client Show documentation
Show all versions of fastdfs-client Show documentation
基于yuqih发布的代码与fastdfs-client 官方1.26版本的重构
package com.github.tobato.fastdfs.proto.storage;
import java.io.IOException;
import java.io.InputStream;
import org.apache.commons.io.IOUtils;
/**
* 下载为byte流
*
* @author tobato
*
*/
public class DownloadByteArray implements DownloadCallback {
@Override
public byte[] recv(InputStream ins) throws IOException {
return IOUtils.toByteArray(ins);
}
}