如何从我的java程序外部更改user.home系统属性,以便它认为它与D:\ Documents and Settings \%USERNAME%不同?通过环境变量或VM参数?
答案 0 :(得分:31)
设置VM参数应该有效:
java -Duser.home=<new_location> <your_program>
这是一个测试用例:
public class test {
public static void main(String[] args) {
System.out.println(System.getProperty("user.home"));
}
}
在Win XP和Linux上使用java 1.5.0_17进行测试
java test
/home/ChssPly76
java -Duser.home=overwritten test
overwritten
答案 1 :(得分:16)
如果要为所有Java程序设置user.home
,可以使用特殊环境变量_JAVA_OPTIONS
。
但请注意difficult to suppress warning message will be printed。
$ export _JAVA_OPTIONS=-Duser.home=/some/new/dir
$ java test
Picked up _JAVA_OPTIONS: -Duser.home=/some/new/dir
/some/new/dir