java 現在のユーザーのホームディレクトリを取得する
javaで、現在のユーザーのホームディレクトリを取得する手順を記述してます。
環境
- OS windows11 home
- java 17.0.2
手順
現在のユーザーのホームディレクトリを取得するには、「System.getProperty」を使用します。
System.getProperty("user.home")
実際に、使用してみます。
public class App {
public static void main(String[] args) throws Exception {
System.out.println(System.getProperty("user.home")); // C:\Users\testuser
}
}
取得されていることが確認できます。
また、現在のユーザーは「user.name」で、現在使用してるフォルダパスは「user.dir」で取得することも可能です。
public class App {
public static void main(String[] args) throws Exception {
System.out.println(System.getProperty("user.name")); // testuser
System.out.println(System.getProperty("user.dir")); // c:\java\test\src
}
}
-
前の記事
java HashMapでkeyからvalueを取得する 2024.11.08
-
次の記事
コマンドプロンプトでのテキストファイルの結合と分割方法 2024.11.11
コメントを書く