Re: System property user.dir
MikeB wrote On 02/28/07 13:55,:
in the Java API guide (http://java.sun.com/j2se/1.5.0/docs/api/java/io/
File.html) the docs mention a system property user.dir that supposedly
has the current user directory.
How do I access the value in this property?
String path = System.getProperty("user.dir");
.... or in some cases you might want
String home = System.getProperty("user.home");
Alternately, is there another way I can establish a base directory
such that, in a subdirectory of my package/jar, I can store data for
the application to read?
Eg. if my application is running in C:x\y\z, I'd like to have a
directory whose fully-qualified name is C:x\y\z\data. If the
application is transported and later runs on D:\a\b\c\, I'd like that
directory to resolve to D:\a\b\c\data.
If the data is "fixed," meaning that you ship the data as
part of the application and treat it as read-only thereafter,
consider putting it in your .jar as a resource and using the
getResource() method of the Class class.
If the data is "variable and small," consisting of things
like user choices reflecting color schemes and so on, consider
using the java.util.prefs.Preferences class instead.
If the data is "variable and large," such as files the
user has created in earlier sessions, consider making them
independent of the location of your application and letting
them sit in whatever location the user desires. You might
use Preferences to keep track of that location (or the last
several locations) from session to session.
--
Eric.Sosman@sun.com