0

Android文件上传问题

我正在尝试在我的 ftp 服务器上上传图像,它没有给我任何异常或错误,但在 nt 中部署了图像。上传图像的任何人都可以识别问题。

FTPClient con = new FTPClient();

    try{
    con.connect("host",21);

    con.login(username, pswd);

    con.setFileType(FTP.BINARY_FILE_TYPE);
    con.setFileTransferMode(FTP.ASCII_FILE_TYPE);
    con.setSoTimeout(10000);
    con.enterLocalPassiveMode();
    if (con.login(username, pswd)) {
        try {
            File sFile = new File("mnt/sdcard/DCIM/download.jpg");
            // connect.setText(sFile.toString());
            BufferedInputStream buffIn = null;
            buffIn = new BufferedInputStream(
                    new FileInputStream(sFile));
            try {
                String fileName = sFile.getName();
                while (!dataUpResp) {
                    dataUpResp = con.storeFile(fileName,
                            buffIn);

                    // publishProgress("" + 10);
                }

            } catch (Exception e) {
                e.printStackTrace();
            }

        } catch (Exception e) {
            e.getMessage();
        }

    }
} catch (IOException e) {
}
4

1 回答 1

0

您的代码中有 2 次登录不是问题吗?

con.login(username, pswd); // 1st time

con.setFileType(FTP.BINARY_FILE_TYPE);
con.setFileTransferMode(FTP.ASCII_FILE_TYPE);
con.setSoTimeout(10000);
con.enterLocalPassiveMode();
if (con.login(username, pswd)) // 2nd time

此外,您没有对 FTPClient 使用注销/断开连接,并且流没有刷新和关闭。
尝试使用 commons-net-3.2.jar 和 FileZilla FTP Server 结合您的代码,它工作正常。

于 2013-01-26T06:33:13.753 回答