Sounds like a job for a TCP socket. Will probably be something like this but more binary-ish:
Socket s = new Socket(Config_Manager.getIp(), Config_Manager.getPort()); OutputStream theOutput = s.getOutputStream(); OutputStreamWriter out = new OutputStreamWriter(theOutput); out.write(content); On Friday, July 20, 2012 1:42:34 AM UTC-5, ANKUR1486 wrote: > > Hi all , > > how to upload large video file to server . > > Thanks > > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

