0

我尝试将 FTP 客户端从我的 Android 设备连接到托管在 docker 中的 FTP 服务器(通过 stilliard/pure-ftpd 映像)。连接:好的,登录:好的,但是当我尝试发送文件时,我的 Android 设备出现此异常:

failed to connect to localhost/127.0.0.1 (port 30007): connect failed: ECONNREFUSED (Connection refused)

我尝试使用“常规”FTP 服务器(vsftpd,不在 docker 中)。有用。

我通过 gradle 的依赖项使用 apache commons 库。

compile group: 'commons-net', name: 'commons-net', version: '3.5'

Android应用程序使用的代码(此代码是快速编写的测试代码):

            FTPClient ftp = new FTPClient();
            try {
                ftp.connect("myhostname", 21);

                if (!ftp.login(mLogin, mPassword)) {
                    throw new RuntimeException();
                }

                int reply = ftp.getReplyCode();

                if (!FTPReply.isPositiveCompletion(reply)) {
                    ftp.disconnect();
                    return false;
                }

                ftp.enterLocalPassiveMode();

                if (!ftp.setFileType(org.apache.commons.net.ftp.FTP.BINARY_FILE_TYPE)) {
                    throw new RuntimeException();
                }
                for (String docPath : docPaths) {
                    Log.d(TAG, "doInBackground: sending " + docPath + "...");
                    File file = new File(docPath);
                    InputStream inputStream = new FileInputStream(file);
                    if (!ftp.storeUniqueFile(file.getName(), inputStream)) {
                        Log.e(TAG, "doInBackground: error while sending");
                        ftp.disconnect();
                        return false;
                    }
                    inputStream.close();
                }
                if (!ftp.logout()) {
                    throw new RuntimeException();
                }

                ftp.disconnect();

                return true;
            } catch (Exception e) {
                Log.e(TAG, "doInBackground: ", e);
                if (ftp.isConnected()) {
                    try {
                        ftp.disconnect();
                    } catch (IOException e1) {
                        Log.e(TAG, "doInBackground: ", e1);
                    }
                }
                return false;
            }
4

0 回答 0