package org.kodejava.lang;
public class UserHomeExample {
public static void main(String[] args) {
// This is the key that we used to obtain user home directory
// in the operating system
String userHome = "user.home";
// We get the path by getting the system property with the
// defined key above.
String path = System.getProperty(userHome);
// We print your home path here
System.out.println("Your Home Path: " + path);
}
}
On my machine it print something like:
Your Home Path: C:\Users\wsaryada
Or
Your Home Path: /Users/wsaryada
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024