我想创建这样的json数组,以将jquery datatable插件与java servlet一起使用
{
"data": [
{
"name": "Tiger Nixon",
"position": "System Architect",
"salary": "$320,800",
"start_date": "2011/04/25",
"office": "Edinburgh",
"extn": "5421"
},
{
"name": "Garrett Winters",
"position": "Accountant",
"salary": "$170,750",
"start_date": "2011/07/25",
"office": "Tokyo",
"extn": "8422"
}
]
}
实际上非常容易。使用Googlegson.jar
Either>]从此处下载
Download Google GSON Jar OR将依赖项(如果您的项目是Maven)添加到pom.xml
<dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.2.2</version> </dependency>
并尝试使用此链接GSON Serializer Example
Note
:-这只是参考代码。您可以根据需要以自己的方式实施。谢谢
创建一个代表您的JSON对象的POJO。顶部对象,包含第二个对象的列表。使用jackson或xstream将Java对象编组到Json并将json字符串写入servlet响应。