在Android上使用FTP上传图像

在Android上使用FTP上传图像,第1张

概述如何在 Android上使用FTP上传图片? 使用SimpleFTP,只需将simpleftp.jar添加到您的类路径,并以任何类将使用它导入包: Download here import org.jibble.simpleftp.*; 确保在上载图像时使用二进制模式,或者它们可能会损坏. try{ SimpleFTP ftp = new SimpleFTP(); // Con 如何在 Android上使用FTP上传图片?解决方法 使用SimpleftP,只需将simpleftp.jar添加到您的类路径,并以任何类将使用它导入包: Download here
import org.jibble.simpleftp.*;

确保在上载图像时使用二进制模式,或者它们可能会损坏.

try{    SimpleftP ftp = new SimpleftP();    // Connect to an FTP server on port 21.    ftp.connect("ftp.somewhere.net",21,"username","password");    // Set binary mode.    ftp.bin();    // Change to a new working directory on the FTP server.    ftp.cwd("web");    // Upload some files.    ftp.stor(new file("webcam.jpg"));    ftp.stor(new file("comicbot-latest.png"));    // You can also upload from an inputStream,e.g.    ftp.stor(new fileinputStream(new file("test.png")),"test.png");    ftp.stor(someSocket.getinputStream(),"blah.dat");    // Quit from the FTP server.    ftp.disconnect();}catch (IOException e){    e.printstacktrace();}

这是所有的功能,所以它不让你下载文件!

总结

以上是内存溢出为你收集整理的在Android上使用FTP上传图像全部内容,希望文章能够帮你解决在Android上使用FTP上传图像所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131990.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存