I need to find my documents path using Java. The following code doesn\'t give me \"accurate\" loation
System.getProperty(\"user.home\");
What sh
this is what eclipse does to get the user document folder
System.getProperty("user.dir") //$NON-NLS-1$ + File.separator + "workspace")
Hope it's helpfull!