org.apache.commons.vfs.FileSystemException:无法通过端口21的“ sftp://用户名:*** @ 114.XX.XX.XX /”连接到SFTP服务器

时间:2019-06-26 07:34:27

标签: java sftp jsch apache-commons-vfs

我可以使用以下凭据从WinSCP访问SFTP

  • serverAddress = 114.XX.XX.XX
  • userId = orafusion
  • password = OraP!ss!123
  • remoteDirectory = TestData /
  • Port = 21

使用的库:

  • commons-vfs2-2.0.jar
  • jsch-0.1.50.jar

当尝试使用Java进行编程连接时,出现以下错误。当我浏览谷歌查找错误时,我所能得到的只是特殊字符!用于密码。因此,使用UriParser.encode(sftpuri)可以解决问题,但不幸的是没有帮助。

org.apache.commons.vfs.FileSystemException: Could not connect to SFTP server at "sftp://orafusion:***@114.XX.XX.XX/".
    at org.apache.commons.vfs.provider.sftp.SftpFileProvider.doCreateFileSystem(SftpFileProvider.java:99)
    at org.apache.commons.vfs.provider.AbstractOriginatingFileProvider.getFileSystem(AbstractOriginatingFileProvider.java:103)
    at org.apache.commons.vfs.provider.AbstractOriginatingFileProvider.findFile(AbstractOriginatingFileProvider.java:82)
    at org.apache.commons.vfs.provider.AbstractOriginatingFileProvider.findFile(AbstractOriginatingFileProvider.java:66)
    at org.apache.commons.vfs.impl.DefaultFileSystemManager.resolveFile(DefaultFileSystemManager.java:692)
    at org.apache.commons.vfs.impl.DefaultFileSystemManager.resolveFile(DefaultFileSystemManager.java:620)
    at com.gfi.oracle.penalty.view.bean.GetMyFiles.startFTP(GetMyFiles.java:76)
    at com.gfi.oracle.penalty.view.bean.GetMyFiles.main(GetMyFiles.java:38)

Caused by: org.apache.commons.vfs.FileSystemException: Could not connect to SFTP server at "114.XX.XX.XX".
    at org.apache.commons.vfs.provider.sftp.SftpClientFactory.createConnection(SftpClientFactory.java:214)
    at org.apache.commons.vfs.provider.sftp.SftpFileProvider.doCreateFileSystem(SftpFileProvider.java:90)
    ... 7 more

Caused by: com.jcraft.jsch.JSchException: Session.connect: java.net.SocketTimeoutException: Read timed out
    at com.jcraft.jsch.Session.connect(Session.java:495)
    at com.jcraft.jsch.Session.connect(Session.java:150)
    at org.apache.commons.vfs.provider.sftp.SftpClientFactory.createConnection(SftpClientFactory.java:210)
    ... 8 more

下面是我用于从SFTP下载文件的代码。

博客参考:https://www.mysamplecode.com/2013/06/sftp-apache-commons-file-download.html

UriParser.encode(sftpUri)的输出。我可以推断出PORT不在此处附加

sftp://orafusion:OraP!ss!123@114.XX.XX.XX/TestData/TestFile.txt

下面的代码行出现错误

FileObject remoteFile = manager.resolveFile(UriParser.encode(sftpUri), opts);

props = new Properties();
StandardFileSystemManager manager = new StandardFileSystemManager();

props.load(new FileInputStream("D:\\common.properties")); // + propertiesFilename));
String serverAddress = props.getProperty("serverAddress").trim();
String userId = props.getProperty("userId").trim();
String password = props.getProperty("password").trim();
String remoteDirectory = props.getProperty("remoteDirectory").trim();
String localDirectory = props.getProperty("localDirectory").trim();

//Initializes the file manager
manager.init();

//Setup our SFTP configuration
FileSystemOptions opts = new FileSystemOptions();
SftpFileSystemConfigBuilder.getInstance().setStrictHostKeyChecking(opts, "no");
SftpFileSystemConfigBuilder.getInstance().setUserDirIsRoot(opts, true);
SftpFileSystemConfigBuilder.getInstance().setTimeout(opts, 10000);

//Create the SFTP URI using the host name, userid, password,  remote path and file name
String sftpUri = "sftp://" + userId + ":" + password +  "@" + serverAddress + "/" +
     remoteDirectory + fileToDownload;

// Create local file object
String filepath = localDirectory + fileToDownload;
File file = new File(filepath);
FileObject localFile = manager.resolveFile(file.getAbsolutePath());

System.out.println("sftp uri : " + UriParser.encode(sftpUri));
// Create remote file object
FileObject remoteFile = manager.resolveFile(UriParser.encode(sftpUri), opts);

// Copy local file to sftp serverF
localFile.copyFrom(remoteFile, Selectors.SELECT_SELF);
System.out.println("File download successful");

1 个答案:

答案 0 :(得分:1)

您在WinSCP中使用FTP,而不是SFTP。这是两个完全不兼容的协议。

或者可能是FTP的加密变体,即FTPS(基于TLS / SSL的FTP)–可能导致您与SFTP混淆。

sftp://ftp://替换URL中的ftps://
参见https://commons.apache.org/proper/commons-vfs/filesystems.html#FTP