FTP Android download, write and upload -
i'm begginer of android. i'm making app downloads file ftp server, writes date , upload updated file ftp server. used apache library ftp downloading , uploading. how direct downloaded file ftp write ?
try { client = new ftpclient(); client.connect("192.168.0.13", 21); client.login("user", "user"); client.setfiletype(ftp.binary_file_type); client.enterlocalpassivemode(); client.retrievefile("date", /*what here*/); /*other code*/ } catch(exception e){e.printstacktrace();}
it possible not save file on kind of storage, keep in app ?
Comments
Post a Comment