//定义一个MAP对象,将对象传给后端接口接收

Map a = ["api": '11', ZGUID: "1231",BESKZ: "1231",MATNR: "1231",TXTMI: "1231",ZZYSJ: "1231", format: 'xml']
print WebServiceUtils.invoke2(wsdlUrl, ns, 'StandardPortService', 'StandardPortSoap11', 'skuRequest', a)


 
 public SkuResponse inbound(@RequestPayload SkuRequest request) {
String xml = ObjectMapperFactory.XML.writeValueAsString(request)//将一个java bean转换成一个String xml
Map params = ObjectMapperFactory.INSTANCE.convertValue(request, Map.class)//将一个java bean转换成一个Map
org.json.JSONObject xmljson= XML.toJSONObject(xml)//将一个String XML转换成一个jsonObject
Object xjon = ObjectMapperFactory.JSON.writeValueAsString(request)//将一个java bean转换成一个json,得到的是一个String,虽然这里定义的是Object的类型,实际上得到的还是一个String
//
//Map ttx = ObjectMapperFactory.INSTANCE.convertValue(xjon, Map.class)
Map ttxa = JSON.parse(xjon)//将一个Object对象转换成一个map SkuRequest ttxw = ObjectMapperFactory.INSTANCE.convertValue(params, SkuRequest.class)//将一个java bean 转换的map转换成一个java bean的对象
// SkuRequest ttxwS = ObjectMapperFactory.INSTANCE.convertValue(xmljson, SkuRequest.class)
//SkuRequest ttxwS1= ObjectMapperFactory.INSTANCE.convertValue(xjon, SkuRequest.class)
SkuRequest ttxwS2 = ObjectMapperFactory.INSTANCE.convertValue(ttxa, SkuRequest.class)//将一个json转换得到的map,转换成一个java bean对象 //String xml=skuXml(request)
ResponseMessage rsp = erpSvc.sendWms(request.api, xml, request.format, request.customerId, params, '')
SkuResponse response = new SkuResponse(code: rsp.code, msg: rsp.msg, data: erpSvc.convertToStr(rsp.data))
return response
}

//将一个String的Json转为Object对象
Object datas= convertToObject(datax,Object.class)
//将对象转为一个List
List<Map> dataList=datas as List

/////////////////////////////////以下是skuRequest的实体类对象


 
//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
// package com.ittx.edi.erp.standard.domain; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType; @XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
name = "",
propOrder = {"api", "zguid", "matnr", "txtmi", "zzysj", "beskz", "volummara", "meins", "bstme", "ausme", "qteunit", "umren", "umrez", "zzthgx", "zzthwl", "ekgrp", "sobsl", "plifz", "webaz", "format", "customerId", "sign"}
)
@XmlRootElement(
name = "skuRequest"
)
public class SkuRequest {
@XmlElement(
required = true
)
protected String api;
@XmlElement(
name = "ZGUID",
required = true
)
protected String zguid;
@XmlElement(
name = "MATNR",
required = true
)
protected String matnr;
@XmlElement(
name = "TXTMI",
required = true
)
protected String txtmi;
@XmlElement(
name = "ZZYSJ",
required = true
)
protected String zzysj;
@XmlElement(
name = "BESKZ",
required = true
)
protected String beskz;
@XmlElement(
name = "VOLUMMARA",
required = true
)
protected String volummara;
@XmlElement(
name = "MEINS",
required = true
)
protected String meins;
@XmlElement(
name = "BSTME",
required = true
)
protected String bstme;
@XmlElement(
name = "AUSME",
required = true
)
protected String ausme;
@XmlElement(
name = "QTEUNIT",
required = true
)
protected String qteunit;
@XmlElement(
name = "UMREN",
required = true
)
protected String umren;
@XmlElement(
name = "UMREZ",
required = true
)
protected String umrez;
@XmlElement(
name = "ZZTHGX",
required = true
)
protected String zzthgx;
@XmlElement(
name = "ZZTHWL",
required = true
)
protected String zzthwl;
@XmlElement(
name = "EKGRP",
required = true
)
protected String ekgrp;
@XmlElement(
name = "SOBSL",
required = true
)
protected String sobsl;
@XmlElement(
name = "PLIFZ",
required = true
)
protected String plifz;
@XmlElement(
name = "WEBAZ",
required = true
)
protected String webaz;
@XmlElement(
required = true
)
protected String format;
@XmlElement(
required = true
)
protected String customerId;
@XmlElement(
required = true
)
protected String sign; public SkuRequest() {
} public String getApi() {
return this.api;
} public void setApi(String value) {
this.api = value;
} public String getZGUID() {
return this.zguid;
} public void setZGUID(String value) {
this.zguid = value;
} public String getMATNR() {
return this.matnr;
} public void setMATNR(String value) {
this.matnr = value;
} public String getTXTMI() {
return this.txtmi;
} public void setTXTMI(String value) {
this.txtmi = value;
} public String getZZYSJ() {
return this.zzysj;
} public void setZZYSJ(String value) {
this.zzysj = value;
} public String getBESKZ() {
return this.beskz;
} public void setBESKZ(String value) {
this.beskz = value;
} public String getVOLUMMARA() {
return this.volummara;
} public void setVOLUMMARA(String value) {
this.volummara = value;
} public String getMEINS() {
return this.meins;
} public void setMEINS(String value) {
this.meins = value;
} public String getBSTME() {
return this.bstme;
} public void setBSTME(String value) {
this.bstme = value;
} public String getAUSME() {
return this.ausme;
} public void setAUSME(String value) {
this.ausme = value;
} public String getQTEUNIT() {
return this.qteunit;
} public void setQTEUNIT(String value) {
this.qteunit = value;
} public String getUMREN() {
return this.umren;
} public void setUMREN(String value) {
this.umren = value;
} public String getUMREZ() {
return this.umrez;
} public void setUMREZ(String value) {
this.umrez = value;
} public String getZZTHGX() {
return this.zzthgx;
} public void setZZTHGX(String value) {
this.zzthgx = value;
} public String getZZTHWL() {
return this.zzthwl;
} public void setZZTHWL(String value) {
this.zzthwl = value;
} public String getEKGRP() {
return this.ekgrp;
} public void setEKGRP(String value) {
this.ekgrp = value;
} public String getSOBSL() {
return this.sobsl;
} public void setSOBSL(String value) {
this.sobsl = value;
} public String getPLIFZ() {
return this.plifz;
} public void setPLIFZ(String value) {
this.plifz = value;
} public String getWEBAZ() {
return this.webaz;
} public void setWEBAZ(String value) {
this.webaz = value;
} public String getFormat() {
return this.format;
} public void setFormat(String value) {
this.format = value;
} public String getCustomerId() {
return this.customerId;
} public void setCustomerId(String value) {
this.customerId = value;
} public String getSign() {
return this.sign;
} public void setSign(String value) {
this.sign = value;
}
}

JAVA -JSON-XML-MAP转换的更多相关文章

  1. java json与map互相转换(二)

      java json与map互相转换(二) CreationTime--2018年7月16日15点09分 Author:Marydon 1.准备工作 所需jar包: commons-beanutil ...

  2. java json与map互相转换(一)

      java json与map互相转换(一) CreationTime--2018年7月16日 Author:Marydon 1.准备工作 所需jar包:json-20180130.jar impor ...

  3. Java:JSON和Map相互转换

    Java:JSON与Map相互转换 需要jar包:jackson-core-2.6.0.jar,jackson-databind-2.6.0.jar,jackson-annotations-2.6.0 ...

  4. Java基础学习总结(54)——JSON和Map转换的工具类

    在pom.xml文件中引入如下jar <dependency> <groupId>commons-lang</groupId> <artifactId> ...

  5. REST easy with kbmMW #24 使用kbmMW实现JSON/XML/YAML转换成对象

    你想过没有,把一个给定的xml或json生成一个Delphi类,并通过这个类完成对xml或json的读写操作吗? 不管有没有,现在kbmMW为我们实现了,看下面这行代码: var s:string; ...

  6. 使用js json/xml互相转换

    <html> <head> <title>json与xml互转</title> <script type="text/javascrip ...

  7. SpringMVC源码阅读:Json,Xml自动转换

    1.前言 SpringMVC是目前J2EE平台的主流Web框架,不熟悉的园友可以看SpringMVC源码阅读入门,它交代了SpringMVC的基础知识和源码阅读的技巧 本文将通过源码(基于Spring ...

  8. Java处理JSON的工具类(List、Map和JSON之间的转换)——依赖jsonlib支持Map嵌套

    原文链接:http://www.itjhwd.com/java_json/ 代码 package com.itjh.mmp.util; import java.io.BufferedReader; i ...

  9. java下XML与JSON互相转换的Utils类

    原文:http://heipark.iteye.com/blog/1394844 需要json-lib-2.1-jdk15.jar和xom-1.2.5.jar,maven pom.xml如下: < ...

  10. 将java中Map对象转为有相同属性的类对象(json作为中间转换)

    java中Map对象转为有相同属性的类对象(json作为中间转换) 准备好json转换工具类 public class JsonUtil { private static ObjectMapper o ...

随机推荐

  1. Codeforces Round #666 (Div. 2) C. Multiples of Length (贪心)

    题意:给你一个由\(0,1,?\)组成的字符串,你可以将\(?\)任意改成\(0\)或\(1\),问你操作后能否使得该字符串的任意长度为\(k\)的区间中的\(0\)和$1的个数相等. 题解:我们首先 ...

  2. __getattr__,__getattribute__和__get__的区别

    dir(object)  列出对象的大多数属性 getattr(object, name) 从object对象中获取name字符串指定的属性 hasattr(object, name) 如果objec ...

  3. github host

    更改hosts文件,地址:C:\Windows\System32\Drivers\etc 不能直接修改,将其拷贝到桌面,进行修改后,再复制到文件目录下(直接替换) 在hosts文件中添加: # git ...

  4. CF1415-C. Bouncing Ball

    CF1415-C. Bouncing Ball 题意: 在\(x\)轴上有\(n\)个点(从\(1\)到\(n\)),每个点都有一个值\(0\)或\(1\),\(0\)代表这个点不能走,\(1\)代表 ...

  5. nginx+lua实现灰度发布/waf防火墙

    nginx+lua 实现灰度发布 waf防火墙 课程链接:[课程]Nginx 与 Lua 实现灰度发布与 WAF 防火墙(完)_哔哩哔哩 (゜-゜)つロ 干杯~-bilibili 参考博客 Nginx ...

  6. 一道思维题 &&递归改循环

    思路: 比如5 2 12345--> 1245 从3开始,这时候5变成了1.剩下4512,对应1234.只需要找到现在n-1,k中的数对应原来的编号的映射. 比如1-->3 是1+2 mo ...

  7. ruby & rvm

    ruby & rvm https://rvm.io/ Ruby Version Manager (RVM) RVM is a command-line tool which allows yo ...

  8. VSCode & useful Extensions

    VSCode & useful Extensions Code Spell Checker bug user dictionary https://www.cnblogs.com/xgqfrm ...

  9. js in depth: closure function & curly function

    js in depth: closure function & curly function 闭包, 科里化 new js 构造函数 实例化, 不需要 new var num = new Ar ...

  10. c++ 遍历当前程序的线程

    #include <iostream> #include <Windows.h> #include <Psapi.h> #include <TlHelp32. ...