String fmtJsonStr=buffer.toString().replaceAll("(//.*)|(/\\*[\\s\\S]*?\\*/)","");
JSONObject jsonObject = JSONObject.parseObject(fmtJsonStr);
JAVA 读取json格式文本删除文本中注释
最新推荐文章于 2024-11-15 18:38:47 发布
String fmtJsonStr=buffer.toString().replaceAll("(//.*)|(/\\*[\\s\\S]*?\\*/)","");
JSONObject jsonObject = JSONObject.parseObject(fmtJsonStr);