J2se | Java | programs | System program's
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”)); } }
