一、json解析的几种方式
1、原生解析
2、Gson解析
3、FastJson解析
4、JackJson解析
二、实现json在线解析功能代码
实例:当在查看一些原始报文数据时,需要美化展示原始报文json,这时需要使用css进行相应排版。在线解析css部分。
pre {
outline: 1px solid #ccc;
padding: 5px;
margin: 5px;
}
.string { color: green; }
.number { color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; }








