试图读取文件但找不到路径?
Trying to read file but not finding the path?
Question/Answer Read a file in groovy into a string 很简单,除了无论我将文件移动到哪里,我都会得到一个 FileNotFound 异常,例如甚至到 linux 框上的根目录。
如果我这样做:
String cpni = new File('/cpni_p').text
并且文件 cpni_p 位于系统的根目录中(即尽可能简单),我得到一个
FileNotFoundException: \cpni_p (the system cannot find the file specified)
我该如何解决这个问题?我也愿意指导 Java——只是想让它发挥作用。
存在目录级权限问题。
Question/Answer Read a file in groovy into a string 很简单,除了无论我将文件移动到哪里,我都会得到一个 FileNotFound 异常,例如甚至到 linux 框上的根目录。
如果我这样做:
String cpni = new File('/cpni_p').text
并且文件 cpni_p 位于系统的根目录中(即尽可能简单),我得到一个
FileNotFoundException: \cpni_p (the system cannot find the file specified)
我该如何解决这个问题?我也愿意指导 Java——只是想让它发挥作用。
存在目录级权限问题。