gpt4 book ai didi

java - Apache Commons Net API 使用

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:39:13 24 4
gpt4 key购买 nike

我正在制作一个程序,使用 apache commons net API 的 FTPCLient 类连接到 FTP 服务器。这是代码:

    FTPClient client = new FTPClient();
byte[] b = new byte[4];
b[ 0] = new Integer(127).byteValue();
b[ 1] = new Integer(0).byteValue();
b[ 2] = new Integer(0).byteValue();
b[ 3] = new Integer(1).byteValue();
try{

InetAddress address = InetAddress.getByAddress(b);
client.connect(address,22);

}

.....我在 connect line() 处得到异常。

org.apache.commons.net.MalformedServerReplyException: Could not parse response code.

最佳答案

试试这个

 FTPClient f = new FTPClient();
f.connect(server);
f.login(username, password);
FTPFile[] files = listFiles(directory);

注意:端口22用于SSH,sftp不用于ftp

如果是 sftp 那么你需要去寻找 commons-vfs

关于java - Apache Commons Net API 使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4756202/

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