JSON工具类使用

这里使用阿里得JSON工具类 fastjson,比较好用。

内容包括 JSON字符串转java对象,java对象转成JSON格式

1, 首先引入json依赖

<dependency>
	<groupId>com.alibaba</groupId>
	<artifactId>fastjson</artifactId>
	<version>1.2.31</version>
</dependency>

2,把一个json字符串转成java对象

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;

String request = "{'id':'123','username':'lm123','userType':'superhero'}";
User requestInfo = JSON.parseObject(request, User.class);
User requestInfo2 = JSONObject.parseObject(request,User.class);

如果传过来的参数是json格式的,可以在方法参数列表内直接将其转成对象

如果返回值是json string 则需要加上注解 @ResponseBody

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;

import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

@RequestMapping(value="/apply", method=RequestMethod.POST, 
    headers = {"content-type=application/json","content-type=application/xml"}) //
@ResponseBody
public String apply(@RequestBody User requestInfo){
	//...
	return "success";
}

3,把java对象转成json格式的

User user = new User("123","lm123");
String json = JSON.toJSONString(user);

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值