Android: Serializing video files
I want to send video files from the An开发者_开发问答droid via network to server. How can I serialize video files in Android?
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).
精彩评论