我在试图将XML档案中的内容纳入我的科特林申请时,正在讨论以下问题:
java.io.FileNotFoundException: /src/main/res/locations.xml: open failed: ENOENT (No such file or directory)
下面是处理文件装载的法典:
fun parseToObject() {
val thread = Thread(Runnable {
try {
val xml = File("src/main/res/locations.xml")
val doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(xml)
println("Root Node: " + doc.documentElement.nodeName)
} catch (e: Exception) {
print(e.message)
}
})
thread.start()
}
任何人都知道我会做什么错误? 我尝试采用完全的道路,缩短道路,似乎不喜欢其中的任何一条。