J junaidahmed Well-Known Member Licensed User Longtime User Dec 31, 2010 #1 How to Copy File from Server to Device using Http Library by Progrmatically
Erel B4X founder Staff member Licensed User Longtime User Dec 31, 2010 #2 You can use Respone.GetAsynchronously. In the Flickr Viewer example it is used to save the images: http://www.b4x.com/forum/basic4android-getting-started-tutorials/6646-flickr-viewer.html Upvote 0
You can use Respone.GetAsynchronously. In the Flickr Viewer example it is used to save the images: http://www.b4x.com/forum/basic4android-getting-started-tutorials/6646-flickr-viewer.html
J junaidahmed Well-Known Member Licensed User Longtime User Dec 31, 2010 #3 CSV File Copy As per your Opinion I used Response.GetAsynchronously method to copy CSV file from server to device,it Copy only files not whole data.pls advise how to do this. My Code is Sub HttpClient1_ResponseSuccess (Response As HttpResponse, TaskId As Int) Response.GetAsynchronously("csvFile",File.OpenOutput(File.DirRootExternal,"citylist.csv",False),True,TaskId) End Sub Last edited: Dec 31, 2010 Upvote 0
CSV File Copy As per your Opinion I used Response.GetAsynchronously method to copy CSV file from server to device,it Copy only files not whole data.pls advise how to do this. My Code is Sub HttpClient1_ResponseSuccess (Response As HttpResponse, TaskId As Int) Response.GetAsynchronously("csvFile",File.OpenOutput(File.DirRootExternal,"citylist.csv",False),True,TaskId) End Sub
J junaidahmed Well-Known Member Licensed User Longtime User Dec 31, 2010 #4 sorry,solve my problem Upvote 0