Sha*_*hah 5 ftp android file-upload
是否可以将我的Android应用程序中的图像上传到FTP服务器?图像将已使用相机拍摄.
在桌面应用程序中,我们使用FTP客户端将任何文件/图像上载到实时服务器.我们如何在Android应用程序中做类似的事情?
使用它对我来说工作正常...
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();
Run Code Online (Sandbox Code Playgroud)
了解更多信息和jar ... http://www.jibble.org/simpleftp/
| 归档时间: |
|
| 查看次数: |
8551 次 |
| 最近记录: |