gpt4 book ai didi

java - org.apache.commons.vfs.FileSystemException : Could not connect to SFTP server at "sftp://username:***@114.XX.XX.XX/" on port 21

转载 作者:行者123 更新时间:2023-11-30 05:35:18 24 4
gpt4 key购买 nike

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

  • 服务器地址=114.XX.XX.XX
  • userId=orafusion
  • 密码=OraP!ss!123
  • remoteDirectory=TestData/
  • 端口=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");

最佳答案

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

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

将网址中的 sftp:// 替换为 ftp://ftps://
请参阅https://commons.apache.org/proper/commons-vfs/filesystems.html#FTP

关于java - org.apache.commons.vfs.FileSystemException : Could not connect to SFTP server at "sftp://username:***@114.XX.XX.XX/" on port 21,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56767556/

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