gpt4 book ai didi

java - Apache Mina 和 JSch 无法设置主目录

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

我正在尝试使用 Apache Mina 和 JSch 编写单元测试,我遇到了一个问题,我确定这与我在 Mina 上设置文件系统的方式有关。

这是Mina 设置代码:

sshd = SshServer.setUpDefaultServer();
sshd.setPort(8002);

sshd.setFileSystemFactory(new NativeFileSystemFactory() {
@Override
public void setCreateHome(boolean createHome)
{
super.setCreateHome(true);
}
@Override
public FileSystemView createFileSystemView(final Session session) {

String userName = session.getUsername();
// create home if does not exist
String homeDirStr = "/home/testusr";
File homeDir = new File(homeDirStr);

if ((!homeDir.exists()) && (!homeDir.mkdirs())) {
System.out.println("Cannot create user home :: " + homeDirStr);
}

return new NativeFileSystemView(session.getUsername(), false) {
@Override
public String getVirtualUserDir() {
return "/home/testusr";
}
};
};
});

sshd.setSubsystemFactories(Arrays.<NamedFactory<Command>>asList(new SftpSubsystem.Factory()));
sshd.setCommandFactory(new ScpCommandFactory());
sshd.setKeyPairProvider(new SimpleGeneratorHostKeyProvider("hostkey.ser"));
List<NamedFactory<UserAuth>> userAuthFactories = new ArrayList<NamedFactory<UserAuth>>();
userAuthFactories.add(new UserAuthNone.Factory());
sshd.setUserAuthFactories(userAuthFactories);
sshd.setPublickeyAuthenticator(new PublickeyAuthenticator() {
public boolean authenticate(String username, PublicKey key, ServerSession session) {
return true;
}
});
sshd.start();

JSch代码:

JSch jsch = new JSch();

String appPublicKey = "c:\\conf\\test_private";
jsch.addIdentity(new File(appPublicKey).getAbsolutePath());

com.jcraft.jsch.Session session = jsch.getSession("testusr","localhost", 8002);
session.setConfig("StrictHostKeyChecking", "no");
session.setTimeout(30000);
session.connect();
Channel channel = session.openChannel("sftp");
channel.connect();
ChannelSftp sftpChannel = (ChannelSftp) channel;

String filename = "c:\\temp\\test.tar.gz";
File f = new File(filename);
sftpChannel.put(new FileInputStream(f), "/home/testusr");

异常:

    4: 
at com.jcraft.jsch.ChannelSftp.getHome(ChannelSftp.java:2403)
at com.jcraft.jsch.ChannelSftp.getCwd(ChannelSftp.java:2412)
at com.jcraft.jsch.ChannelSftp.remoteAbsolutePath(ChannelSftp.java:2904)
at com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:517)
at com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:492)
at com.SftpServiceTest.sendFile(SftpServiceTest.java:183)
at com.SftpServiceTest.main(SftpServiceTest.java:218)
Caused by: java.io.IOException: inputstream is closed
at com.jcraft.jsch.ChannelSftp.fill(ChannelSftp.java:2871)
at com.jcraft.jsch.ChannelSftp.header(ChannelSftp.java:2895)
at com.jcraft.jsch.ChannelSftp._realpath(ChannelSftp.java:2315)
at com.jcraft.jsch.ChannelSftp.getHome(ChannelSftp.java:2397)
... 6 more

我似乎找不到任何创建 FileSystemView 的好例子。希望有人能帮助我,我已经坚持了好几天了!

提前致谢。

最佳答案

这就是我最终在单元测试中设置 Jsch 和 Mina 的方式:

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations = { "classpath:context.xml"})公共(public)类 SftpTaskletLetterTest 扩展 AbstractAomTest {

@Autowired
private SftpTaskletLetter cut;

private SshServer sshd = null;

@Before
public void setUp() throws Exception {
sshd = createAndStartSSHServer();
}

@After
public void tearDown() throws Exception {
sshd.stop();
}

@Test
public void testPutAndGetFile() throws Exception {
JSch jsch = new JSch();

Hashtable<String, String> config = new Hashtable<>();
JSch.setConfig(config);

Session session = jsch.getSession("assentisftp", "127.0.0.1", 22);

UserInfo ui = new MyUserInfo();
session.setUserInfo(ui);
session.connect();

// Channel channel = session.openChannel("session"); // works
Channel channel = session.openChannel("sftp");
channel.connect();

ChannelSftp sftpChannel = (ChannelSftp) channel;

final String testFileContents = "some file contents";

String uploadedFileName = "uploadFile";
sftpChannel.put(new ByteArrayInputStream(testFileContents.getBytes()), uploadedFileName);

String downloadedFileName = "downLoadFile";
sftpChannel.get(uploadedFileName, downloadedFileName);

File downloadedFile = new File(downloadedFileName);
assertTrue(downloadedFile.exists());

if (sftpChannel.isConnected()) {
sftpChannel.exit();
}

if (session.isConnected()) {
session.disconnect();
}
}

public static SshServer createAndStartSSHServer() throws IOException {
SshServer result = SshServer.setUpDefaultServer();
result.setPort(22);
result.setKeyPairProvider(new SimpleGeneratorHostKeyProvider("hostkey.ser"));
result.setPasswordAuthenticator(new PasswordAuthenticator() {
public boolean authenticate(String username, String password, ServerSession session) {
return "assentisftp".equals(username);
}
});
result.setSubsystemFactories(Arrays.<NamedFactory<Command>> asList(new SftpSubsystem.Factory()));
result.start();
return result;
}

@Override
protected MandatorType getMandator() {
return MandatorType.MAN;
}

public static class MyUserInfo implements UserInfo {

@Override
public String getPassphrase() {
return "";
}

@Override
public String getPassword() {
return "";
}

@Override
public boolean promptPassword(String message) {
return true;
}

@Override
public boolean promptPassphrase(String message) {
return true;
}

@Override
public boolean promptYesNo(String message) {
return true;
}

@Override
public void showMessage(String message) {
}
}

关于java - Apache Mina 和 JSch 无法设置主目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22312011/

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