简体   繁体   中英

How to deserialize JSON string

I have found lots of online tutorials but all of them are deserializing JSON strings into objects or lists of objects.

I just have a web service which returns either 1 or 0 as JSON.

So it prints something like:

""\"0\""

Or:

""\"1\""

How can I deserialize a simple JSON like that into a string?

According to the RFC4627 a valid JSON string is defined as either a JSON object or a JSON array. Your web service should return something similar to this.

{ "Result": 0 }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM