如何在jenkins管道中解析此json。我尝试了几个选项链接 org.groovy.StringEscapeUtils,JsonSlurper。
似乎什么都没用,需要帮助
import groovy.json.JsonException
import groovy.json.JsonSlurper
try {
print new JsonSlurper().parseText('''
{
\"hello\": \"world with quotation marks\"
}
''')
} catch (JsonException | IllegalArgumentException e) {
print e
}
输出:[hello:带引号的世界]
预期:{“ hello”:“带引号的世界”}