gpt4 book ai didi

java - Android模拟器中从本地FTP服务器下载时出现错误 "227 Entering Passive Mode"/"Connection refused"

转载 作者:行者123 更新时间:2023-12-01 18:38:26 26 4
gpt4 key购买 nike

我正在尝试使用在 Android 模拟器中运行的 Java FTPSClient 从本地 FileZilla 服务器下载文件。

我编写了这个帮助程序代码来下载一个文件:

public boolean downloadSingleFile(FTPSClient ftpClient,
String remoteFilePath, File downloadFile) {
OutputStream outputStream;
Log.i("t1", remoteFilePath + " - " + downloadFile.getAbsolutePath());
try {
outputStream = new BufferedOutputStream(new FileOutputStream(
downloadFile));
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
boolean retval = ftpClient.retrieveFile(remoteFilePath, outputStream);
outputStream.flush();
return retval;
} catch (Exception e) {
Log.e("dwFile", e.toString());
Log.e("dwFile", ftpClient.getReplyString());
} return false;
}

我这样称呼这个函数:

FTPSClient dwClient = new FTPSClient();
dwClient.addProtocolCommandListener(
new PrintCommandListener(
new PrintWriter(new OutputStreamWriter(System.out, "UTF-8")), true));
dwClient.setConnectTimeout(30 * 1000);
dwClient.connect(OmsSettingsFunctions.getFTPServer());
Log.i("dwDB", dwClient.getReplyString());
if (dwClient.login(FPTuser, FTPpass)) {
Log.i("dwDB", dwClient.getReplyString());
dwClient.enterLocalPassiveMode();
File dwFile = new File(externalPath + "/Android/data/com.myapp/files/Documents/db.temp");
if(!downloadSingleFile(dwClient, "/DBs/db.txt", dwFile)) {
Log.e("dwDB", "Download could not finish (DB)");
Log.e("dwDB", dwClient.getReplyString());
}...

但我不断收到此错误:

I/System.out: 220-FileZilla Server version 0.9.41 beta
I/System.out: 220-written by Tim Kosse (Tim.Kosse@gmx.de)
220 Please visit http://sourceforge.net/projects/filezilla/
I/System.out: AUTH TLS
D/EGL_emulation: eglMakeCurrent: 0xa209dd60: ver 3 0 (tinfo 0x9f652ff0)
D/EGL_emulation: eglMakeCurrent: 0xa209dd60: ver 3 0 (tinfo 0x9f652ff0)
I/System.out: 234 Using authentication type TLS
I/dwDB: 234 Using authentication type TLS
I/Permission: Readingpermission is granted
I/Permission: Writingpermission is granted
I/System.out: USER *******
I/System.out: 331 Password required for omstest
I/System.out: PASS *******
I/System.out: 230 Logged on
I/dwDB: 230 Logged on
I/t1: /DBs/db.txt - /storage/0FF0-280B/Android/data/com.myapp/files/Documents/db.temp
I/System.out: TYPE I
I/System.out: 200 Type set to I
I/System.out: PASV
I/System.out: 227 Entering Passive Mode (127,0,0,1,199,113)
E/dwFile: java.net.ConnectException: Connection refused
227 Entering Passive Mode (127,0,0,1,199,113)
E/dwDB: Download could not finish (DB)
227 Entering Passive Mode (127,0,0,1,199,113)

我已经尝试使用 enterLocalActivemode() 而不是 enterLocalPassivmode() 但没有帮助。 FTP 服务器强制执行 TLS,并在我的本地计算机上运行。我通过 10.0.2.2(Android 环回)连接到它。我该如何解决这个问题?

最佳答案

虽然我不熟悉 Android Emulator,但我假设您需要连接到 10.0.2.2 才能连接到模拟器主机。

在 FTP 被动模式下,服务器发回 FTP 客户端需要连接以传输文件(或目录列表)的 IP 地址。当您的 FTP 服务器监听 127.0.0.1 时,它会发回该 IP 地址。但在 Android 代码的上下文中,127.0.0.1 指的是(模拟的)Android 主机。因此“连接被拒绝”。

这与连接到 NAT 后面的 FTP 服务器的常见问题非常相似。请参阅FTP server running on Port 2000 over NAT not working on Passive Mode

因此解决方案是相同的:

  • 在 FileZilla 服务器界面中,转到编辑 > 设置 > 被动模式设置 > IPv4 特定 > 用于被动模式传输的外部服务器 IP 地址。然后输入 10.0.2.2。
  • 也许您还需要取消选中“不要使用外部 IP 进行本地连接”。

显然,这反过来会使 FTP 服务器无法供普通客户端使用。

正如您所评论的那样,只有当从 Android 模拟器连接到模拟器主机上运行的 FTP 服务器时,才会出现此问题。

<小时/>

另一个解决方案是使用FTPClient.setPassiveNatWorkaroundStrategy。它接受 HostnameResolver 接口(interface)的实现。如果您以将 127.0.0.1 转换为 10.0.2.2 的方式实现,即使服务器上没有任何更改,它也将允许您的 Java 代码进行连接。

public static class ServerResolverImpl implements HostnameResolver {
private FTPClient client;

public ServerResolverImpl(FTPClient client) {
this.client = client;
}

@Override
public String resolve(String hostname) throws UnknownHostException {
// Ignore "hostname" returned by the server.
// Instead always use the primary address of the FTP server.
return this.client.getRemoteAddress().getHostAddress();
}
}

关于java - Android模拟器中从本地FTP服务器下载时出现错误 "227 Entering Passive Mode"/"Connection refused",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59993784/

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