如何在String变量LogPath中获取项目的Application路径。稍后将使用LogPath创建项目的日志文件。我正在使用Eclipse进行编码。
答案 0 :(得分:4)
我会用
String logPath = new File(".").getAbsolutePath();
..开始。
答案 1 :(得分:4)
USE
String AbsolutePath = new File(".").getAbsolutePath();
说明:File(".")
表示当前目录,getAbsoultePath()
返回当前目录的绝对路径。
希望它有所帮助: - )
答案 2 :(得分:1)
此调用:new File(".").getAbsolutePath()
为您提供应用程序的当前工作目录。我希望这能回答你的问题。
答案 3 :(得分:1)
您使用的是哪种语言?
Java:
File directory = new File (".");
System.out.println ("Current directory's canonical path: " + directory.getCanonicalPath());
System.out.println ("Current directory's absolute path: " + directory.getAbsolutePath());