我在将通过XMLSlurper解析的XML文件呈现为XML变量时遇到问题。 以下是我的代码。
def userFile = new File(“test.xml”) def xml = new XmlSlurper()。parse(userFile)
渲染xml
问题是我看不到xml被渲染到我的flex应用程序中。
答案 0 :(得分:2)
如果您只想渲染xml文件,可以说:
def xmlFile = new File("test.xml")
response.contentType = "text/xml"
response.outputStream << xmlFile.text
根本不需要诽谤