feature:ftp修正

release
gaorl 2 years ago
parent 89204e2fda
commit 6ac8f7b71f
  1. 2
      dxhy-oss/src/main/java/com/dxhy/oss/service/impl/FileServiceImpl.java

@ -199,7 +199,7 @@ public class FileServiceImpl implements FileService {
FileInputStream fis = null; FileInputStream fis = null;
FileOutputStream fos = null; FileOutputStream fos = null;
try { try {
File download = new File(downloadFile.substring(0, downloadFile.lastIndexOf("/"))); File download = new File(downloadFile);
fis = new FileInputStream(download); fis = new FileInputStream(download);
fos = new FileOutputStream(file); fos = new FileOutputStream(file);
//复制文件 //复制文件

Loading…
Cancel
Save