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

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

jquery - javascript onscroll fade same class but with different div -