Android FTP客户端无法将文件发送到Docker FTP服务器

时间:2016-12-01 15:55:42

标签: android ftp pureftpd

我尝试将我的Android设备上的FTP客户端连接到托管服务器中的FTP服务器(通过stilliard / pure-ftpd映像)。连接:好的,登录:好的,但是当我尝试发送文件时,我的Android设备有这个例外:

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

我尝试使用“常规”FTP服务器(vsftpd,而不是docker)。它有效。

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

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;
            }

0 个答案:

没有答案