我有一个应用程序,其中有一个变量'file_Base_Path',我正在从 propertyFile(比如 sample.properties)读取它的值。我想将变量值设置为 user.home 并且 ${user.home}不起作用。如何将值设置为 user.home 以便它在 Linux 和 Windows 中都可以使用。
注意:我不能使用 System.getProperties('user.home') 因为值并不总是 user.home 它可能会有所不同
样本属性:
file_Base_Path=${user.home}
我如何设置值:
properties.getProperty("file_Base_Path") //i'm expecting '/home/user' but it is returning '${user.home}'
谢谢