4

如何在字符串变量 LogPath 中获取项目的应用程序路径。LogPath 稍后用于创建项目的日志文件。我正在使用 Eclipse 进行编码。

4

4 回答 4

4

我会用

String logPath = new File(".").getAbsolutePath();

..开始。

于 2012-09-24T09:48:52.423 回答
4

采用

String AbsolutePath = new File(".").getAbsolutePath();

说明:File(".")表示当前目录,getAbsoultePath()返回当前目录的绝对路径。

希望能帮助到你 :-)

于 2012-09-24T10:23:12.950 回答
1

此调用:new File(".").getAbsolutePath()为您提供应用程序的当前工作目录。我希望这回答了你的问题。

于 2012-09-24T09:48:28.853 回答
1

您使用哪种语言?

爪哇:

File directory = new File (".");
System.out.println ("Current directory's canonical path: " +     directory.getCanonicalPath());
System.out.println ("Current directory's absolute  path: " + directory.getAbsolutePath());
于 2012-09-24T09:49:20.240 回答