package me.zhengjie.base.file; import java.io.File; import java.io.InputStream; import org.springframework.stereotype.Component; /** * 把文件上传的本地磁盘 * * @author auas * */ @Component public class LocalFileHandle extends AbstractFileHandle { @Override public void uploadFileStream(FileHandleVo fileHandle) throws Exception { } @Override public void uploadfilePath(FileHandleVo fileHandle) throws Exception { } @Override public InputStream getObject(String objectName) throws Exception { return null; } @Override public String getObjectUrl(String keyName) throws Exception { return null; } @Override public byte[] getByte(String fileId) throws Exception { return null; } @Override public long getSize(String keyName) throws Exception { // TODO Auto-generated method stub return 0; } @Override public String getCustomUrl(String fileKey, String filePath) throws Exception { // TODO Auto-generated method stub return null; } @Override public File getFileWithPath(String fileKey) throws Exception { return null; } }