如何将图像从Android发送到FTP

时间:2014-05-12 14:39:19

标签: android image upload ftp

我不知道以下连接是否正确,我有一个IOException。

SB = ftp://IDUSER:password@ftp.fercode.com/manolo;type=i

URL url = new URL( sb.toString() );
URLConnection urlc = url.openConnection();
urlc.getOutputStream();// this line throws a IOException

1 个答案:

答案 0 :(得分:0)

您需要使用像Apache这样的FTP客户端来正确上传和下载文件。

看看这里: http://commons.apache.org/proper/commons-net/apidocs/org/apache/commons/net/ftp/FTPClient.html