Home Java Beginners Find User Home Directory



Find User Home Directory
Posted on: June 29, 2007 at 12:00 AM
This section provides you an example that finds 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.

Related Tags for Find User Home Directory:
cclassormformobjectioformatgetsystemusingsetfortoextendinformationexteextendsinrminfoasmoutjclemendallobjsyssatinfllarxtssthstabatiendsendsinforminformatjendono


More Tutorials from this section

Ask Questions?    Discuss: Find User Home Directory   View All Comments

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.