Sending a serialized object from Android to a servlet using HTTP client

前端 未结 3 491
死守一世寂寞
死守一世寂寞 2021-01-12 13:43

I have tried to create a android application that sends a serialzed object from the phone to a servlet the contents of the object is the input from the user which i will sto

3条回答
  •  [愿得一人]
    2021-01-12 13:54

    Don't use serialization between architectures. Use JSON, XML, or something else that is architecture-neutral.

提交回复
热议问题