我试图使用org.apache.commons.vfs2通过SFTP下载文件。 问题是,密码包含“@”字符,所以这将导致URI被正确地分析:
org.apache.commons.vfs2.FileSystemException: Expecting / to follow the hostname in URI
有没有人有一个想法如何解决这个问题? (我不能更改密码,很明显)。 这是我使用的代码:
String sftpUri = "sftp://" + userName + ":" + password + "@"
+ remoteServerAddress + "/" + remoteDirectory + fileName;
String filepath = localDirectory + fileName;
File file = new File(filepath);
FileObject localFile = manager.resolveFile(file.getAbsolutePath());
FileObject remoteFile = manager.resolveFile(sftpUri, opts);
localFile.copyFrom(remoteFile, Selectors.SELECT_SELF);