json与javabeanxml之间的转换

4 篇文章 0 订阅

map转json的处理:

  Map map = new HashMap();
          map.put("success", "true");
       map.put("photoList", photoList);
         map.put("currentUser", "zhang");
        
        //net.sf.json.JSONObject 将Map转换为JSON方法
         JSONObject json = JSONObject.fromObject(map);
         //org.json.JSONObject 将Map转换为JSON方法
         JSONObject json =new JSONObject(map);

 

在java中的对于json的使用:

com.alibaba.fastjson.JSON

JSONObject parseObject1 = JSON.parseObject(xml2json);
Object object = parseObject1.get("root");
com.retail.supmarket.http.dto.wechatre.Root wechatRe =
 JSON.parseObject(object.toString(),com.retail.supmarket.http.dto.wechatre.Root.class);

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

使用gson的转换:

com.google.gson.JsonParser

JsonParser parser = new JsonParser();
JsonObject object = (JsonObject) parser.parse(sendGet);
JsonElement jsonElement = object.get("header");
System.out.println(jsonElement);

        <dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
		</dependency>

Attention:

使用上面的内容获取参数的时侯需要对获取的参数进行去除引号的操作才可以

        JsonParser parser = new JsonParser();
		JsonObject object = (JsonObject) parser.parse(request);
		JsonElement sku = object.get("sku"); // 商品sku
		JsonElement salenum = object.get("salenum"); // 售卖数量
		JsonElement price = object.get("price"); // 价格

        ParaItem paraItem = new ParaItem();
		paraItem.setPrice(price.toString().replace("\"", ""));
		paraItem.setProdcode(sku.toString().replace("\"", ""));
		paraItem.setSalenum(salenum.toString().replace("\"", ""));

xml于json之间的转换

import org.json.JSONObject;
import org.json.XML; 
/**.
     * json to xml
     * @param jsonStr
     * @return
     */
    public static String json2xml(String jsonStr) {
    	JSONObject jsonObj = new JSONObject(jsonStr);
        return  XML.toString(jsonObj);
    }
 
    /**
     * xml to json
     * @param xml
     * @return
     */
    public static String xml2json(String xml) {
    	
    	
        JSONObject xmlJSONObj = XML.toJSONObject(xml.replace("<xml>", "").replace("</xml>", ""));
        return xmlJSONObj.toString();
    }

        <dependency>
			<groupId>org.json</groupId>
			<artifactId>json</artifactId>
		</dependency>

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Diligently_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值