Find User Home Directory

This section provides you an example that finds user home directory.

Find User Home Directory

This section provides you an example that finds user home directory.

Find User Home Directory

Find User Home Directory 

     

In this example we are find user home directory.

We are using System class  to get the information about system. System class extends Object class. System class allow us to get or set system information.

The method used into this example:

getProperty(String Key):
This method is used to get the property of system for passing Key values.

In this example we are passing "user.home" as key to get the user define home directory.

The code of the program is given below:

public class UserHomeExample 
{
  public static void main(String[] args)
  {
 
  System.out.println("User Home Path: "+
System.getProperty
("user.home"));
  }
}

The output of the program is given below:

C:\convert\rajesh\completed>javac UserHomeExample.java
C:\convert\rajesh\completed>java UserHomeExample
User Home Path: C:\Documents and Settings\Administrator

Download this example.