以下代码行适用于 Eclipse
Path file = Paths.get(System.getProperty("user.home"),"Desktop","Peppe.txt");
但是,当我尝试从终端运行它时,它会返回此错误消息
java.nio.file.NoSuchFileException: /root/Desktop/Peppe.txt
理论上System.getProperty("user.name")
应该返回一个平台独立的根路径位?不是吗?
以下代码行适用于 Eclipse
Path file = Paths.get(System.getProperty("user.home"),"Desktop","Peppe.txt");
但是,当我尝试从终端运行它时,它会返回此错误消息
java.nio.file.NoSuchFileException: /root/Desktop/Peppe.txt
理论上System.getProperty("user.name")
应该返回一个平台独立的根路径位?不是吗?