• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

lua解析json

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

转载注明出处:点击打开链接

需要修改的json数据gui-config.json

[plain] view plain copy
  1. {  
  2.     "configs": [{  
  3.         "server": "JP3.ISS.TF",  
  4.         "server_port": 443,  
  5.         "password": "58603228",  
  6.         "method": "aes-256-cfb",  
  7.         "remarks": ""  
  8.     },  
  9.     {  
  10.         "server": "US1.ISS.TF",  
  11.         "server_port": 443,  
  12.         "password": "37382928",  
  13.         "method": "aes-256-cfb",  
  14.         "remarks": ""  
  15.     },  
  16.     {  
  17.         "server": "HK2.ISS.TF",  
  18.         "server_port": 8989,  
  19.         "password": "59434206",  
  20.         "method": "aes-256-cfb",  
  21.         "remarks": ""  
  22.     }],  
  23.     "strategy": null,  
  24.     "index": 0,  
  25.     "global": false,  
  26.     "enabled": true,  
  27.     "shareOverLan": false,  
  28.     "isDefault": false,  
  29.     "localPort": 1080,  
  30.     "pacUrl": null,  
  31.     "useOnlinePac": false,  
  32.     "availabilityStatistics": false  
  33. }  


LUA解析代码:

[plain] view plain copy
  1. function FileRead()  
  2.     local file = io.open("gui-config.json", "r");  
  3.     local json = file:read("*a");  
  4.     file:close();  
  5.     return json;  
  6. end  
  7.   
  8. function FileWrite()  
  9.     local file = io.open("gui-config.json", "w");  
  10.     file:close();  
  11. end  
  12.   
  13. local cjson = require("cjson");  
  14. local file = FileRead();  
  15. local json = cjson.decode(file);  
  16. for i, w in ipairs(json.configs) do  
  17.     print("server: " .. w.password)  
  18.     print("server_port: " .. w.server_port)  
  19.     print("password: " .. w.password)  
  20.     print("method: " .. w.method .. '\n')  
  21. end  

输出:


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Centos 下安装 nginx+lua openResty 环境发布时间:2022-07-22
下一篇:
lua的table转为excel表格的方法发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap