lua中操作json数据的方法
程序员文章站
2022-08-29 21:35:06
用lua的cjson包就行了。
下载地址在这里
安装的话,make&make install就行了。
复制代码 代码如下:
local cjson = requi...
用lua的cjson包就行了。
下载地址在这里
安装的话,make&make install就行了。
复制代码 代码如下:
local cjson = require("cjson")
local str = '["a", "b", "c"]'
local j = cjson.decode(str)
for i,v in ipairs(j) do
print(v)
end
str = '{"a":1, "b":2}'
j = cjson.decode(str)
for k,v in pairs(j) do
print(k..":"..v)
end
j['c']='c'
new_str = cjson.encode(j)
print(new_str)