如何使用FTPClient将图像上传到FTP?

时间:2011-10-12 13:28:10

标签: android image ftp

我正在使用

FTPClient con = new FTPClient();
try
{
    con.connect(HOST);
    if (con.login (LOGIN, PASSWORD))
    {
        con.enterLocalPassiveMode(); 
        InputStream instream = context.openFileInput(filename);
        con.storeFile(filename, instream);
        instream.close();
    }
}
catch (Exception e)
{
    e.printStackTrace();
}
try
{
    con.logout();
    con.disconnect();
}

使用文本文件可以正常工作。使用图像文件,图像非常奇怪:

image

如何纠正?

1 个答案:

答案 0 :(得分:7)