A JSONObject text must begin with ‘{‘ at 1 [character 2 line 1]
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
解决方案
// 待格式化的 json 字符串
String specValueList = "[{\"id\":146,\"specName\":\"服务版本\",\"specValue\":\"标准版\",\"timeLengthValue\":0},{\"id\":140,\"specName\":\"周期\",\"specValue\":\"1个月\",\"timeLengthValue\":2678400}]";
// 转换为 Java 可识别的 json
JSONArray jsonArray = JSON.parseArray(specValueList);
// 转换为 Javabean 列表
List<SpecificationNameList> nameListList = jsonArray.toJavaList(SpecificationNameList.class);
for (SpecificationNameList nameList : nameListList) {
System.out.println("nameList = " + nameList);
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)