JSON parser error with double quotes

 

Use backslash charater \ to escape double quotes in JSON file as below example.

 

{

    "myInfo": {

        "description": [

            {

                "myName": "C.HU Inc.",

                "myDetails": "Join me, \"FRIEND\",let's travel around the world together. "

            }

        ]

    }

}

 

你可能感兴趣的:(double)