gpt4 book ai didi

java - Apache Mina SFTP SftpSubsystem.Factory()

转载 作者:搜寻专家 更新时间:2023-11-01 01:25:00 26 4
gpt4 key购买 nike

我正在尝试使用 Apache Mine SSHD v1.2.0 设置一个简单的 SFTP 服务器.

我看过网上的几个例子here , herehere .

但是它们全部 有相同的行,我无法让 NetBeans 解析。 NetBeans 告诉我它在 SftpSubsystem 中找不到 Factory。有问题的行如下所示:

sftpServer.setSubsystemFactories (
Arrays. <NamedFactory <Command >> asList (new SftpSubsystem.Factory ()));

我的 main 看起来像下面这样:

SshServer sftpServer = SshServer.setUpDefaultServer ();
sftpServer.setPort (PORT);
sftpServer.setKeyPairProvider (new SimpleGeneratorHostKeyProvider (new File("hostkey.ser")));
sftpServer.setSubsystemFactories (
Arrays. <NamedFactory <Command >> asList (new SftpSubsystem.Factory ()));
sftpServer.setPasswordAuthenticator (new PasswordAuthenticator () {
@Override
public boolean authenticate (String username, String password, ServerSession session) {
return true;
}
});
sftpServer.start ();
while(true);

我错过了什么?我只是想连接到虚拟 SFTP 服务器并列出一些目录并上传一两个文件。问题是我想从现有的 Java 应用程序内部执行此操作。

最佳答案

在最新版本的 Apache SSHD 中,它是 SftpSubsystemFactory:

sftpServer.setSubsystemFactories(
Arrays.<NamedFactory<Command>>asList(new SftpSubsystemFactory()));

关于java - Apache Mina SFTP SftpSubsystem.Factory(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43842937/

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