美文网首页
如何将String字符串转变为json格式

如何将String字符串转变为json格式

作者: 爱睡觉的小章鱼 | 来源:发表于2019-09-16 16:39 被阅读0次

字符串Data的数据格式为{"password":"123456"},encodeConfig的值为password

如何将Data的值由String转变为Json呢?

我们需要利用jettison中的JSONObject类,需要导入的类如下:

import org.codehaus.jettison.json.JSONObject;

//将String字符串转变为Json

JSONObject jsonObject=new JSONObject(Data);

//因为encodeConfig的值为password,通过getString方法可以拿到123456

toEncode = jsonObject.getString(encodeConfig);

相关文章

网友评论

      本文标题:如何将String字符串转变为json格式

      本文链接:https://www.haomeiwen.com/subject/olqfuctx.html