迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Java >

如何在 Java 中获取当前工作目录

作者:迹忆客 最近更新:2023/08/14 浏览次数:

本文介绍了如何获取当前工作目录,并列举了一些示例代码来理解。

获取当前工作目录的方法有几种,这里我们用到了 System.getProperty()toAbsolutePath()FileSystems.getDefault() 等方法。我们来看看实例。


在 Java 中使用 System.getProperty() 方法获取当前工作目录

System.getProperty() 方法是返回由键(参数)表示的系统属性。例如,user.dir 返回用户目录,os.name 返回操作系统的名称。这里,我们用这个方法来获取当前用户工作目录。请看下面的例子。

public class SimpleTesting {
	public static void main(String[] args) {
		String directoryName = System.getProperty("user.dir");
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

使用 Java 中的 toAbsolutePath() 获取当前工作目录

toAbsolutePath() 方法可以获得任何位置的绝对路径。这里,我们用这个方法来获取当前目录的绝对路径。请看下面的例子。

import java.nio.file.Path;
import java.nio.file.Paths;

public class SimpleTesting {

	public static void main(String[] args) {
		Path path = Paths.get("");
		String directoryName = path.toAbsolutePath().toString();
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

使用 Java 中的 normalize() 方法获取当前工作目录

normalize() 方法从当前路径返回一个路径,在这个路径中,所有多余的名称元素都被删除。我们将此方法与 toAbsolute() 方法一起使用,通过消除多余的名称来获得当前工作目录。请看下面的例子。

import java.nio.file.Path;
import java.nio.file.Paths;

public class SimpleTesting {

	public static void main(String[] args) {
		Path path = Paths.get("");
		String directoryName = path.toAbsolutePath().normalize().toString();
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

在 Java 中使用 FileSystems.getDefault() 方法获取当前工作目录

我们可以使用 FileSystem 类的 getDefault() 方法来获取默认的 Filesystem,然后使用 toAbsolutePath() 方法来获取当前工作目录的绝对路径。请看下面的例子。

import java.nio.file.FileSystems;
import java.nio.file.Path;

public class SimpleTesting {

	public static void main(String[] args) {
		Path path = FileSystems.getDefault().getPath("");
		String directoryName = path.toAbsolutePath().toString();
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

使用 Java 中的 getAbsoluteFile() 方法获取当前工作目录

我们可以使用 getAbsoluteFile() 方法来获取当前文件的位置,实际代表当前目录的位置。请看下面的例子。

import java.io.File;

public class SimpleTesting {

	public static void main(String[] args) {
		File file = new File("");
		String directoryName = file.getAbsoluteFile().toString();
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

在 Java 中使用 getClass() 方法获取当前的工作目录

我们可以使用 Java 中 Object 类的 getClass() 方法来返回当前正在运行的类,进一步可以用 getPath() 方法来获取当前工作目录的路径。请看下面的例子。

public class SimpleTesting {

	String getCurrentDirectory() {
		return this.getClass().getClassLoader().getResource("").getPath();
	}
	
	public static void main(String[] args) {
		
		String directoryName = new SimpleTesting().getCurrentDirectory();
		System.out.println("Current Working Directory is = " +directoryName);
	}
}

输出:

Current Working Directory is = D:\eclipse-workspace\corejavaexamples

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Do you understand JavaScript closures?

发布时间:2025/02/21 浏览次数:108 分类:JavaScript

The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.

Do you know about the hidden traps in variables in JavaScript?

发布时间:2025/02/21 浏览次数:178 分类:JavaScript

Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av

How much do you know about the Prototype Chain?

发布时间:2025/02/21 浏览次数:150 分类:JavaScript

The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start

如何从 Pandas 的日期时间列中提取月份和年份

发布时间:2024/04/23 浏览次数:160 分类:Python

我们可以分别使用 dt.year()和 dt.month()方法从 Datetime 列中提取出年和蛾。我们还可以使用 pandas.DatetimeIndex.month 以及 pandas.DatetimeIndex.year 和 strftime()方法提取年份和月份。

如何获取 Pandas DataFrame 的行数

发布时间:2024/04/23 浏览次数:71 分类:Python

本教程介绍如何通过使用 shape,len()来获取 Pandas DataFrame 的行数,以及有多少行元素满足条件。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便