简体   繁体   中英

Parsing JSON DATA in AWS

I still cannot parse JSON data in linux. I need a linux command to parse Json data to readable string.

someone told me to use underscore-cli.(https://npmjs.org/package/underscore-cli)

I install and use it, still the result is unreadable.

my data: "2005\年05\月12\日(\木) 02\時16\分"

according to this link http://json.parser.online.fr/

the result is "2005年05月12日(木) 02時16分"

Is there any other way to parse this Json data? Please help.

Try jq: http://stedolan.github.com/jq/

echo  '"2005\u5e7405\u670812\u65e5(\u6728) 02\u664216\u5206"' | ./jq .
"2005年05月12日(木) 02時16分"

jq takes escaped unicode and outputs it in utf-8.

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