| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- 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;
- }
- }
|