文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java连接服务器的两种方式SFTP和FTP有什么区别

2023-07-05 06:26

关注

这篇文章主要介绍了Java连接服务器的两种方式SFTP和FTP有什么区别的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Java连接服务器的两种方式SFTP和FTP有什么区别文章都会有所收获,下面我们一起来看看吧。

区别

FTP是一种文件传输协议,一般是为了方便数据共享的。包括一个FTP服务器和多个FTP客户端。FTP客户端通过FTP协议在服务器上下载资源。FTP客户端通过FTP协议在服务器上下载资源。而一般要使用FTP需要在服务器上安装FTP服务。

而SFTP协议是在FTP的基础上对数据进行加密,使得传输的数据相对来说更安全,但是传输的效率比FTP要低,传输速度更慢(不过现实使用当中,没有发现多大差别)。SFTP和SSH使用的是相同的22端口,因此免安装直接可以使用。

总结:

一;FTP要安装,SFTP不要安装。

二;SFTP更安全,但更安全带来副作用就是的效率比FTP要低。

FtpUtil

<!--ftp文件上传--><dependency>    <groupId>commons-net</groupId>    <artifactId>commons-net</artifactId>    <version>3.6</version></dependency>
import org.apache.commons.net.ftp.FTP;import org.apache.commons.net.ftp.FTPClient;import org.apache.commons.net.ftp.FTPFile;import org.apache.commons.net.ftp.FTPReply;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;import java.io.*;@Componentpublic class FtpUtil {    private static final Logger logger = LoggerFactory.getLogger(FtpUtil.class);    //ftp服务器地址    @Value("${ftp.server}")    private String hostname;    //ftp服务器端口    @Value("${ftp.port}")    private int port;    //ftp登录账号    @Value("${ftp.userName}")    private String username;    //ftp登录密码    @Value("${ftp.userPassword}")    private String password;        public FTPClient getFtpClient() {        FTPClient ftpClient = new FTPClient();        ftpClient.setControlEncoding("UTF-8");        try {            //设置连接超时时间            ftpClient.setDataTimeout(1000 * 120);            logger.info("连接FTP服务器中:" + hostname + ":" + port);            //连接ftp服务器            ftpClient.connect(hostname, port);            //登录ftp服务器            ftpClient.login(username, password);            // 是否成功登录服务器            int replyCode = ftpClient.getReplyCode();            if (FTPReply.isPositiveCompletion(replyCode)) {                logger.info("连接FTP服务器成功:" + hostname + ":" + port);            } else {                logger.error("连接FTP服务器失败:" + hostname + ":" + port);                closeFtpClient(ftpClient);            }        } catch (IOException e) {            logger.error("连接ftp服务器异常", e);        }        return ftpClient;    }        public boolean uploadFileToFtp(String pathName, String fileName, InputStream inputStream) {        boolean isSuccess = false;        FTPClient ftpClient = getFtpClient();        try {            if (ftpClient.isConnected()) {                logger.info("开始上传文件到FTP,文件名称:" + fileName);                //设置上传文件类型为二进制,否则将无法打开文件                ftpClient.setFileType(FTP.BINARY_FILE_TYPE);                //路径切换,如果目录不存在创建目录                if (!ftpClient.changeWorkingDirectory(pathName)) {                    boolean flag = this.changeAndMakeWorkingDir(ftpClient, pathName);                    if (!flag) {                        logger.error("路径切换(创建目录)失败");                        return false;                    }                }                //设置被动模式,文件传输端口设置(如上传文件夹成功,不能上传文件,注释这行,否则报错refused:connect)                ftpClient.enterLocalPassiveMode();                ftpClient.storeFile(fileName, inputStream);                inputStream.close();                ftpClient.logout();                isSuccess = true;                logger.info(fileName + "文件上传到FTP成功");            } else {                logger.error("FTP连接建立失败");            }        } catch (Exception e) {            logger.error(fileName + "文件上传异常", e);         } finally {            closeFtpClient(ftpClient);            closeStream(inputStream);        }        return isSuccess;    }        public boolean deleteFile(String pathName, String fileName) {        boolean flag = false;        FTPClient ftpClient = getFtpClient();        try {            logger.info("开始删除文件");            if (ftpClient.isConnected()) {                //路径切换                ftpClient.changeWorkingDirectory(pathName);                ftpClient.enterLocalPassiveMode();                ftpClient.dele(fileName);                ftpClient.logout();                flag = true;                logger.info("删除文件成功");            } else {                logger.info("删除文件失败");            }        } catch (Exception e) {            logger.error(fileName + "文件删除异常", e);        } finally {            closeFtpClient(ftpClient);        }        return flag;    }        public void closeFtpClient(FTPClient ftpClient) {        if (ftpClient.isConnected()) {            try {                ftpClient.disconnect();            } catch (IOException e) {                logger.error("关闭FTP连接异常", e);            }        }    }        public void closeStream(Closeable closeable) {        if (null != closeable) {            try {                closeable.close();            } catch (IOException e) {                logger.error("关闭文件流异常", e);            }        }    }        public void changeAndMakeWorkingDir(FTPClient ftpClient, String path) {        boolean flag = false;        try {            String[] path_array = path.split("/");            for (String s : path_array) {                boolean b = ftpClient.changeWorkingDirectory(s);                if (!b) {                    ftpClient.makeDirectory(s);                    ftpClient.changeWorkingDirectory(s);                }            }            flag = true;        } catch (IOException e) {            logger.error("路径切换异常", e);        }        return flag;    }        public boolean downloadFile(FTPClient ftpClient, String pathName, String targetFileName, String localPath) {        boolean flag = false;        OutputStream os = null;        try {            System.out.println("开始下载文件");            //切换FTP目录            ftpClient.changeWorkingDirectory(pathName);            ftpClient.enterLocalPassiveMode();            FTPFile[] ftpFiles = ftpClient.listFiles();            for (FTPFile file : ftpFiles) {                String ftpFileName = file.getName();                if (targetFileName.equalsIgnoreCase(ftpFileName)) {                    File localFile = new File(localPath + targetFileName);                    os = new FileOutputStream(localFile);                    ftpClient.retrieveFile(file.getName(), os);                    os.close();                }            }            ftpClient.logout();            flag = true;            logger.info("下载文件成功");        } catch (Exception e) {            logger.error("下载文件失败", e);        } finally {            closeFtpClient(ftpClient);            closeStream(os);        }        return flag;    }}

SFTPUtil

<dependency>    <groupId>com.jcraft</groupId>    <artifactId>jsch</artifactId>    <version>0.1.54</version></dependency>
import com.jcraft.jsch.*;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Component;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.InputStream;import java.util.Properties;import java.util.Vector;@Componentpublic class SFTPUtil {    private static final Logger logger = LoggerFactory.getLogger(SFTPUtil.class);    private Session session = null;    private ChannelSftp channel = null;    private int timeout = 60000;        public boolean connect(String ftpUsername, String ftpAddress, int ftpPort, String ftpPassword) {        boolean isSuccess = false;        if (channel != null) {            System.out.println("通道不为空");            return false;        }        //创建JSch对象        JSch jSch = new JSch();        try {            // 根据用户名,主机ip和端口获取一个Session对象            session = jSch.getSession(ftpUsername, ftpAddress, ftpPort);            //设置密码            session.setPassword(ftpPassword);            Properties config = new Properties();            config.put("StrictHostKeyChecking", "no");            //为Session对象设置properties            session.setConfig(config);            //设置超时            session.setTimeout(timeout);            //通过Session建立连接            session.connect();            System.out.println("Session连接成功");            // 打开SFTP通道            channel = (ChannelSftp) session.openChannel("sftp");            // 建立SFTP通道的连接            channel.connect();            System.out.println("通道连接成功");            isSuccess = true;        } catch (JSchException e) {            logger.error("连接服务器异常", e);        }        return isSuccess;    }        public void close() {        //操作完毕后,关闭通道并退出本次会话        if (channel != null && channel.isConnected()) {            channel.disconnect();        }        if (session != null && session.isConnected()) {            session.disconnect();        }    }        public boolean upLoadFile(InputStream src, String dst, String fileName) throws SftpException {        boolean isSuccess = false;        try {            if(createDir(dst)) {                channel.put(src, fileName);                isSuccess = true;            }        } catch (SftpException e) {            logger.error(fileName + "文件上传异常", e);        }        return isSuccess;    }        public boolean createDir(String createpath) {        boolean isSuccess = false;        try {            if (isDirExist(createpath)) {                channel.cd(createpath);                return true;            }            String pathArry[] = createpath.split("/");            StringBuffer filePath = new StringBuffer("/");            for (String path : pathArry) {                if (path.equals("")) {                    continue;                }                filePath.append(path + "/");                if (isDirExist(filePath.toString())) {                    channel.cd(filePath.toString());                } else {                    // 建立目录                    channel.mkdir(filePath.toString());                    // 进入并设置为当前目录                    channel.cd(filePath.toString());                }            }            channel.cd(createpath);            isSuccess = true;        } catch (SftpException e) {            logger.error("目录创建异常!", e);        }        return isSuccess;    }        public boolean isDirExist(String directory) {        boolean isSuccess = false;        try {            SftpATTRS sftpATTRS = channel.lstat(directory);            isSuccess = true;            return sftpATTRS.isDir();        } catch (Exception e) {            if (e.getMessage().toLowerCase().equals("no such file")) {                isSuccess = false;            }        }        return isSuccess;    }        public boolean rename(String oldPath, String newPath) {        boolean isSuccess = false;        try {            channel.rename(oldPath, newPath);            isSuccess = true;        } catch (SftpException e) {            logger.error("重命名指定文件或目录异常", e);        }        return isSuccess;    }        public Vector ls(String path) {        try {            Vector vector = channel.ls(path);            return vector;        } catch (SftpException e) {            logger.error("列出指定目录下的所有文件和子目录。", e);        }        return null;    }        public boolean deleteFile(String directory, String deleteFile) {        boolean isSuccess = false;        try {            channel.cd(directory);            channel.rm(deleteFile);            isSuccess = true;        } catch (SftpException e) {            logger.error("删除文件失败", e);        }        return isSuccess;    }        public boolean download(String directory, String downloadFile, String saveFile) {        boolean isSuccess = false;        try {            channel.cd(directory);            File file = new File(saveFile);            channel.get(downloadFile, new FileOutputStream(file));            isSuccess = true;        } catch (SftpException e) {            logger.error("下载文件失败", e);        } catch (FileNotFoundException e) {            logger.error("下载文件失败", e);        }        return isSuccess;    }}

问题

文件超出默认大小

#单文件上传最大大小,默认1Mb
spring.http.multipart.maxFileSize=100Mb
#多文件上传时最大大小,默认10Mb
spring.http.multipart.maxRequestSize=500MB

关于“Java连接服务器的两种方式SFTP和FTP有什么区别”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“Java连接服务器的两种方式SFTP和FTP有什么区别”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯