如何将图像上传到Android应用程序中的FTP服务器?

时间:2011-06-24 06:58:23

标签: android file-upload ftp

是否可以将我的Android应用程序中的图像上传到FTP服务器?图像将已使用相机拍摄。

在桌面应用程序中,我们使用FTP客户端将任何文件/图像上传到实时服务器。我们如何在Android应用程序中做类似的事情?

1 个答案:

答案 0 :(得分:5)

使用它对我来说工作正常......

SimpleFTP ftp = new SimpleFTP();


                // Connect to an FTP server on port 21.
                ftp.connect("server address", 21, "username", "pwd");

                // Set binary mode.
                ftp.bin();

                // Change to a new working directory on the FTP server.


                ftp.cwd("path");

                // Upload some files.
                ftp.stor(new File("your-file-path"));              

                // Quit from the FTP server.
                ftp.disconnect();

了解更多信息和jar ... http://www.jibble.org/simpleftp/