写法
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.31</version>
</dependency>
import com.alibaba.fastjson.JSON;
// List 转 json string
String jsonStr = JSON.toJSONString( list );
// Map 转 json string
String jsonStr = JSON.toJSONString( map ); 原文链接:https://www.f2er.com/json/288793.html