fastjson工具函数json和java对象相互转化

前端之家收集整理的这篇文章主要介绍了fastjson工具函数json和java对象相互转化前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package com.saic.grape.utils;

import java.util.Map;
import com.meidusa.fastjson.JSON;
import com.meidusa.fastjson.JSONObject;
import com.saic.grape.entity.KeyValue;
/**
* @version 1.0
* @date 2014-4-22 javaBean转化为字符串公共类
* @author SHENBO
*/
public class FastJsonUtil
{
/**
* 将javabean转化为序列化的json字符串
* @param keyvalue
* @return
*/
public static Object beanToJson(KeyValue keyvalue) {
String textJson = com.meidusa.fastjson.JSON.toJSONString(keyvalue);
Object objectJson = JSON.parse(textJson);
return objectJson;
}

* 将string转化为序列化的json字符串
public static Object textToJson(String text) {
Object objectJson = JSON.parse(text);
* json字符串转化为map
* @param s
public static Map stringToCollect(String s) {
Map m = (Map) JSONObject.parSEObject(s);
return m;
* 将map转化为string
* @param m
public static String collectToString(Map m) {
String s = JSONObject.toJSONString(m);
return s;
public static void main(String[] args) {

String str = "{\"appCode\":\"Grape\",\"appVersion\":\"1.0\",\"deviceId\":\"236fa43ed352cc235\",\"sourceId\":\"1c1c1c\",\"userAccount\":\"13812345678\",\"userToken\":\"123456789\"}";
Map ma = FastJsonUtil.stringToCollect(str);
System.out.println(ma.get("appCode"));
} 原文链接:https://www.f2er.com/json/290182.html

猜你在找的Json相关文章