我在Ready!Api 1.9.0中使用Groovy脚本来解码在SOAP响应中返回的base64字符串,并将生成的JSON对象存储在json文件中。然后获取生成的文件并使用JsonSlurper解析它以获取Map对象。
这个对象需要迭代,所以我可以找到一个键并断言它的值。我无法弄清楚为什么找不到钥匙。如果我使用map.get(key)直接调用一个键,我会收到错误“No such property”。如果我使用map.get('key')直接调用它,则返回null。我还尝试了Map.each{k -> log.info("${k}")}
,它返回'interface.java.util.Map'而不是预期的键列表。
//create file path
def respFile = "C:\\Users\\me\\Documents\\Temp\\response.json"
//set originaldata in response to var
def response1 = context.expand( '${Method#Response#declare namespace ns4=\'com/service/path/v4\'; declare namespace ns1=\'com/other/service/path/v4\'; //ns1:RequestResponse[1]/ns1:GetAsset[1]/ns1:Asset[1]/ns4:DR[1]/ns4:Sources[1]/ns4:Source[1]/ns4:OriginalData[1]}' )
//decode the data
byte[] decoded = response1.decodeBase64()
//create file using file path above if it doesnt exist
def rf = new File(respFile)
//write data to file NOTE will overwrite existing data
FileOutputStream f = new FileOutputStream(respFile);
f.write(decoded);
f.close();
//begin second file
import groovy.json.JsonSlurper;
def inputFile = new File("C:\\Users\\me\\Documents\\Temp\\response.json")
def parResp = new JsonSlurper().parse(inputFile)
//test to find key
Map.each{k -> log.info("${k}")}
.. //解析之前的json示例,而不是完整的json:
{
"Response": {
"ecn": 1000386213,
"header": {
"msgRefNum": "bbb-ls-123"
},
"success": true,
"duplicatedit": false,
"subjectReturnCode": 1,
"subject": [
{
"uu": 11264448,
"name": {
"name3": "WINSTON BABBLE",
"dob": "19700422",
"gender": "2",
"ecCoded": "160824",
"ecCodeSegment": "ZZ"
},
"acc": [
{
"ftp": "01",
"Number": "AEBPJ3977L",
"issued": "20010101",
"mMode": "R"
} ],
"telephone": [
{
"telephoneType": "01",
"telephoneNumber": "9952277966",
"mMode": "R"
} ],
"address": [
{
"line1": "M\/O HEALTH AND FAMILY WELFARE",
"sCode": "07",
"cCode": 110009,
"ac": "04",
"reportedd": "160430",
"mMode": "R",
"mb": "lakjsdf blorb"
},
答案 0 :(得分:3)
问题标题非常清楚,让我们回答一下。
给定内容为x.json
的文件{"foo":42,"bar":true}
,以下代码段会读取该文件并打印所有键值对:
def map = new groovy.json.JsonSlurper().parse(new File('x.json'))
map.each { key, value ->
println "$key : $value"
}
结果(有趣的花絮:密钥重新排序,但无关紧要):
bar : true
foo : 42
现在你问题的主体很混乱。所有的开头看起来都无关紧要,所以我不确定上面的代码片段是否会有所帮助,但我希望它会有所帮助。
现在关于interface java.util.Map
的奇怪结果:
Map.each { println it }
产生interface java.util.Map
,这是完全正常的,你在对象Map.class
上“迭代”,而不是通过读取json文件而产生的地图对象。
另一种说明这一点的方法:
Map.each { println it }
Integer.each { println it }
123.each { println it }
"HI!".each { println it }
结果:
interface java.util.Map
class java.lang.Integer
123
H
I
!