如何使用 Apache MINA 库编写 SFTP 客户端

How to write SFTP client using Apache MINA library

我尝试使用 Apache MINA 库查找 Java SFTP 客户端代码,但找不到。

谁能告诉我如何使用 Apache MINA 库编写一个简单的基于密码身份验证的 SFTP 客户端。

https://mina.apache.org/sshd-project/apidocs/org/apache/sshd/client/subsystem/sftp/SftpClient.html

基于 apache-sshd-2.2.0-src 包根目录中 README.md 中的示例:

SshClient client = SshClient.setupDefaultClient();
// override any default configuration...
client.setSomeConfiguration(...);
client.setOtherConfiguration(...);
client.start();
try (ClientSession session = client.connect(user, host, port).verify(timeout).getSession()) {
    session.addPasswordIdentity(password);
    session.auth.verify(timeout);

    // User-specific factory
    try (SftpClient sftp = DefaultSftpClientFactory.INSTANCE.createSftpClient(session)) {
        // use sftp here
    }
}