What is the best server client communication protocol to use in Android and iOS?

后端 未结 3 2492
离开以前
离开以前 2021-02-20 18:30

We have a server application (implemented in Java) that will provide some data for our mobile apps. The apps will be created for Android and iOS.

Which is the best proto

3条回答
  •  南笙
    南笙 (楼主)
    2021-02-20 19:24

    Use Jackson parser or Gson parser instead of JSON Parser.

    1.Jackson is 2X faster than JSON and it is suitable for parsing complex and extremely big jsons.

    2.Gson competitively faster than JSON.

提交回复
热议问题