vote up 1 vote down star

The difficulty is that it should be cross platform. Windows 2000, XP, Vista, OSX, Linux, other unix variants. I am looking for a snippet of code that can accomplish this for all platforms, and a way to detect the platform.

Now, you should be aware of bug 4787931 that user.home does not work correctly, so please do not provide me of texbook answers, I can find these myself in the manuals.

flag

Did you try the workarounds mentioned in the bug? There are plenty of suggestions. – Joachim Sauer Feb 25 at 15:10
1  
bug 4787931 for java versions up through 1.4.2 shows up again as bug 6519127 for java 1.6. The problem is not going away and is still listed as low priority. – G_A Sep 1 at 15:53

6 Answers

vote up 5 vote down check

Since you specifically mention bug 4787391 I assume you are not satisfied with the System.getProperty("user.home") functionality. Are you sure? the user.home approach seems to work in a very large number of cases. If you have read the bug page you will find that a 100% bulletproof solution on Windows is hard, because Windows has a shifting concept of what the home directory means.

If user.home isn't good enough for you I would suggest choosing a definition of 'home directory' for windows and using it, getting the appropriate environment variable with System.getenv(String).

link|flag
Finally, this is the best solution after all. – Bruno Ranschaert Jun 8 at 21:57
vote up 4 vote down

System.getProperty(String name) should do it with the right property:

System.getProperty("user.home");

Other useful properties can be found here

link|flag
Same answer as above, see comments above. This seems to be an exercise in replication. – Bruno Ranschaert Mar 3 at 17:34
vote up 8 vote down
System.getProperty("user.home");

See the JavaDoc.

link|flag
Nope, not a correct answer, this is the same one as above. Yes, I did not only read the JavaDocs, but I also tried it out on all platforms before asking this question! The answer is not so simple. – Bruno Ranschaert Mar 3 at 17:34
vote up 0 vote down

Others have answered the question before me but a useful program to print out all available properties is:

for (Map.Entry<?,?> e : System.getProperties().entrySet()) {
    System.out.println(String.format("%s = %s", e.getKey(), e.getValue())); 
}
link|flag
I wouldn't depend on this, because not all properties are standardized. Instead check the JavaDoc for System.getProperties() to find out which properties are guaranteed to exist. – Joachim Sauer Feb 25 at 11:21
That may be true but it's still pretty useful for a newbie I would think! I'm not sure it deserves 2 downvotes :-( – oxbow_lakes Feb 25 at 12:05
vote up 4 vote down

The concept of a HOME directory seems to be a bit vague when it comes to Windows. If the environment variables (HOMEDRIVE/HOMEPATH/USERPROFILE) aren't enough, you may have to resort to using native functions via JNI or JNA. SHGetFolderPath allows you to retrieve special folders, like My Documents (CSIDL_PERSONAL) or Local Settings\Application Data (CSIDL_LOCAL_APPDATA).

Sample JNA code:

public class PrintAppDataDir {

    public static void main(String[] args) {
    	if (com.sun.jna.Platform.isWindows()) {
    		HWND hwndOwner = null;
    		int nFolder = Shell32.CSIDL_LOCAL_APPDATA;
    		HANDLE hToken = null;
    		int dwFlags = Shell32.SHGFP_TYPE_CURRENT;
    		char[] pszPath = new char[Shell32.MAX_PATH];
    		int hResult = Shell32.INSTANCE.SHGetFolderPath(hwndOwner, nFolder,
    				hToken, dwFlags, pszPath);
    		if (Shell32.S_OK == hResult) {
    			String path = new String(pszPath);
    			int len = path.indexOf('\0');
    			path = path.substring(0, len);
    			System.out.println(path);
    		} else {
    			System.err.println("Error: " + hResult);
    		}
    	}
    }

    private static Map<String, Object> OPTIONS = new HashMap<String, Object>();
    static {
    	OPTIONS.put(Library.OPTION_TYPE_MAPPER, W32APITypeMapper.UNICODE);
    	OPTIONS.put(Library.OPTION_FUNCTION_MAPPER,
    			W32APIFunctionMapper.UNICODE);
    }

    static class HANDLE extends PointerType implements NativeMapped {
    }

    static class HWND extends HANDLE {
    }

    static interface Shell32 extends Library {

    	public static final int MAX_PATH = 260;
    	public static final int CSIDL_LOCAL_APPDATA = 0x001c;
    	public static final int SHGFP_TYPE_CURRENT = 0;
    	public static final int SHGFP_TYPE_DEFAULT = 1;
    	public static final int S_OK = 0;

    	static Shell32 INSTANCE = (Shell32) Native.loadLibrary("shell32",
    			Shell32.class, OPTIONS);

    	/**
    	 * see http://msdn.microsoft.com/en-us/library/bb762181(VS.85).aspx
    	 * 
    	 * HRESULT SHGetFolderPath( HWND hwndOwner, int nFolder, HANDLE hToken,
    	 * DWORD dwFlags, LPTSTR pszPath);
    	 */
    	public int SHGetFolderPath(HWND hwndOwner, int nFolder, HANDLE hToken,
    			int dwFlags, char[] pszPath);

    }

}
link|flag
FYI, the folder that corresponds to the user's home directory is CSIDL_PROFILE. See msdn.microsoft.com/en-us/library/…. – Matt Solnit Feb 25 at 17:36
Yes, this is an elaborate version for the Windows case. – Bruno Ranschaert Jun 8 at 21:58
vote up 1 vote down

I would use the algorithm detailed in the bug report using System.getenv(String), and fallback to using the user.dir property if none of the environment variables indicated a valid existing directory. This should work cross-platform.

I think, under Windows, what you are really after is the user's notional "documents" directory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.