我有以下groovy脚本将xml转换为json。
https://stackoverflow.com/a/24647389/2165673
这是我的xml
<?xml version="1.0" encoding="utf-8"?>
<Response xmlns="">
<ProgressResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<ErrorMessage>error </ErrorMessage>
<IsSuccessful>false</IsSuccessful>
</ProgressResult>
</ProgressResponse>
我需要的JSON结果是
{
"IsSuccessful" : "false",
"ErrorMessage" : "Something Happened"
}
但我得到以下内容 http://www.tiikoni.com/tis/view/?id=b4ce664
我正在努力改进我的groovy脚本,但我刚开始使用它,它有一个陡峭的学习曲线。有人可以帮我指引正确的方向吗?
谢谢!
答案 0 :(得分:1)
应该是(未经测试,但应该有效):
def map = new XmlParser().parseText(xml)
.MarkInProgressResult
.with { x ->
[IsSuccessful: x.IsSuccessful.text(),
ErrorMessage: x.ErrorMessage.text()]
}
String json = new JsonBuilder(map)
答案 1 :(得分:0)
您的xml简短易用。这可以帮到你:
在java中:
public class Util {
public static String getTagValue(String xml, String tagName){
return xml.split("<"+tagName+">")[1].split("</"+tagName+">")[0];
}
}
在groovy组件中:
def jsonBuilder = new groovy.json.JsonBuilder()
jsonBuilder(
IsSuccessful: Util.getTagValue(xml,"IsSuccessful"),
ErrorMessage: Util.getTagValue(xml,"ErrorMessage")
)
return jsonBuilder.toPrettyString()
这个项目:
https://github.com/jrichardsz/mule-esb-usefull-templates/tree/master/simple-json-groovy