-1
我想使用XmlSlurper解析XML文件。我有以下代碼:NoRouteToHostException在Groovy中使用XmlSlurper
import groovy.util.XmlSlurper
def newIssue = new XmlSlurper().parse(new File("1234-export.xml"))
運行這讓我:
java.net.NoRouteToHostException: No route to host.
我能夠做的XmlSlurper()parstText(...)沒有問題,我能得到的。文件使用:
def newFile = new File("1234-export.xml")
我仍然得到無路由異常,如果我嘗試傳遞newFile解析()雖然。有什麼想法嗎?
謝謝!