Mega Code Archive

 
Categories / Java Tutorial / Development
 

Get user home directory name

public class Main {   public static void main(String[] args) {     String userHome = "user.home";     String path = System.getProperty(userHome);     System.out.println("Your Home Path: " + path);   } }