| | |

Find the system homepath

this java program gives the system home path as output.

/**
*
* @author katta vijay
*/
public class UserHomeExample
{
public static void main(String[] args)
{

System.out.println(“User Home Path: “+
System.getProperty(“user.home”));
}
}

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *