XML文件
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
我想读取特定标签的值,我正在使用 XMLSlurper,下面是我的代码
String sample ='to'
def person = new XmlSlurper().parse(new File("C:\\Desktop\\note.xml"))
println person.to
对于上述得到的答案= Tove。
但是当我将标签名称作为字符串传递时,我没有得到该值
String sample ='to'
def person = new XmlSlurper().parse(new File("C:\\Desktop\\note.xml"))
println person.sample
获取空字符串
让我知道我该如何处理这个问题?
摇曳的蔷薇
相关分类