当前位置: 技术问答>java相关
请问:使用System.getProperty(),或者如何得到属性文件的路径
来源: 互联网 发布时间:2015-09-10
本文导语: 请问:使用System.getProperty(),或者如何得到属性文件的路径 | 我不知道这种用法,我只知道用Properties.load(inputstream)来读取Prop文件 定位prop文件全路径,用File.getAbsolutePath(); | ...
请问:使用System.getProperty(),或者如何得到属性文件的路径
|
我不知道这种用法,我只知道用Properties.load(inputstream)来读取Prop文件
定位prop文件全路径,用File.getAbsolutePath();
定位prop文件全路径,用File.getAbsolutePath();
|
除了用Properties.load(inputstream) 来load文件外,还有一种办法可以加property:
当你运行java时用-D参数, 比如:
java -Dtest=ttt MyClass
这样你在MyClass.java中可以用System.getProperty("test")得到ttt
当你运行java时用-D参数, 比如:
java -Dtest=ttt MyClass
这样你在MyClass.java中可以用System.getProperty("test")得到ttt