gpt4 book ai didi

java - Apache FTP客户端 : Read welcome message

转载 作者:行者123 更新时间:2023-11-30 07:32:15 25 4
gpt4 key购买 nike

通过我的 Java 程序,我使用 Apache Commons Net 连接到 FTP 服务器。FTP 服务器充当我的软件的更新服务器,目前每次我检查更新时,更新程序都会下载 .txt 并检查文件中写入的版本号是否大于计算机上当前安装的版本号。

有没有办法从 FTP 服务器的欢迎消息中获取计算机上软件更新的版本号?那么我就不必下载 .txt 来检查更新,而是只能连接到服务器并检查欢迎消息中的号码?

最佳答案

欢迎消息实际上是对连接的“响应”。

因此,在使用 FTPClient.connect() 连接后,请使用 FTPClient.getReplyStrings()检索欢迎消息。

ftp.connect(server);

// After connection attempt, you should check the reply code to verify success.
reply = ftp.getReplyCode();

if (!FTPReply.isPositiveCompletion(reply))
{
ftp.disconnect();
System.err.println("FTP server refused connection.");
System.exit(1);
}

// read the initial response (aka "Welcome message")
String[] welcomeMessage = ftp.getReplyStrings();

关于java - Apache FTP客户端 : Read welcome message,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35938586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com