Apache FTPClient:阅读欢迎消息

时间:2016-03-11 11:04:36

标签: java ftp apache-commons-net

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

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

1 个答案:

答案 0 :(得分:1)

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

因此,在使用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();