Reputation: 1907
I want to send video files from the Android via network to server. How can I serialize video files in Android?
Upvotes: 0
Views: 603
Reputation: 1006704
You cannot "serialize video files" on any platform, let alone Android. Files are already "serialized" by definition.
If you want to send it to a Web service, you will need to research the API of that Web service (e.g., HTTP PUT for uploading videos) and then implement that in Android (e.g., using HttpClient).
Upvotes: 3