lua中操作json数据的方法
用lua的cjson包就行了。
下载地址在这里http://www.kyne.com.au/~mark/software/lua-cjson.php
安装的话,make&makeinstall就行了。
localcjson=require("cjson")
localstr='["a","b","c"]' localj=cjson.decode(str) fori,vinipairs(j)do print(v) end
str='{"A":1,"B":2}' j=cjson.decode(str) fork,vinpairs(j)do print(k..":"..v) end j['C']='c' new_str=cjson.encode(j) print(new_str)