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

Im working on a project and I need the program to store some of the property files and some text files.
How could I save a file in the appdata folder on windows in java also what would be the linux equivalent of appdat? Thanks in advance

share|improve this question
2  
Please take a look at - stackoverflow.com/questions/4670815/… – AVD Sep 26 '11 at 1:56

2 Answers

up vote 1 down vote accepted

Save the file to System.getenv("APPDATA")

AppData Java Docs

share|improve this answer

Consider using a sub-directory of user.home to store the data.

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.