对象数据上传至FTP
/**
* 需要参数:File对象、文件名
*/
public void uploadLocalCompFile(File sourceFile, String remoteFileName) throws JSchException, SftpException, FileNotFoundException {
String remoteFilepath = “服务器存放目录”+ remoteFileName;
try {
("推送文件服务器[{}:{}:{}]路径[{}]文件数据", ftpPort, ftpHost, ftpUserName, remoteFilepath);
// ftp文件上传工具类
(ftpPort ,ftpHost , ftpUserName, remoteFilepath, (), snowPassword);
} catch (Exception e) {
(() ,e);
throw new FileNotFoundException(());
}finally {
if (()) { //注意最后清理上传后的本地临时文件 以及 目录
();
}
}
}