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上传图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)