Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a program that puts some information in a user's My Documents folder. I find this folder by using System.getProperty("user.home"); Now I have a customer for whom this doesn't work and when I got some debug output from him the file name it tried to access was in the form \name.com\HHA\Users\person\My Documents\file.txt. Is this related to active directory? Or some other weirdness?

share|improve this question

2 Answers

try using JfileChooser

new JFileChooser().getFileSystemView().getDefaultDirectory(); 

instead of

System.getProperty("user.home");

i doubt it returns proper home directory

share|improve this answer
This returns the same thing (with the addition of "My Documents"). The problem is Java.io.File does not recognize this as a directory. – vextorspace Aug 15 '11 at 13:08

ok then please try this..

Runtime.getRuntime().exec("explorer.exe C:\\Documents and Settings\\All Users\\Documents");

Do notice double back slash and take care while using code..!! and ya you can change the path as per your config.!!

Thanks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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