共计 368 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用 System.getProperty("user.dir")
来获取当前文件的路径。这会返回一个字符串,表示当前的工作目录。另外,可以使用 File
类来获取当前文件的路径,如下所示:
import java.io.File;
public class Main {public static void main(String[] args) {File currentFile = new File("");
String currentPath = currentFile.getAbsolutePath();
System.out.println(" 当前文件路径:" + currentPath);
}
}
这段代码创建了一个空的 File
对象,然后使用 getAbsolutePath()
方法获取当前文件的绝对路径,并将其打印出来。
丸趣 TV 网 – 提供最优质的资源集合!
正文完