define a default directory for Input files
dir.default=/home/data/in/
dir.proj1=dir.default /p1
dir.proj2=dir.default /p2
dir.proj3=dir.default /p3
is this possible?
|
|
define a default directory for Input filesdir.default=/home/data/in/ dir.proj1=dir.default /p1 is this possible?
|
||
|
|
|
|
Standard properties files are just key-value pairs. In the text format, If you want your own substitution syntax, then you can manipulate a returned value as you would with any other string. Alternatively, you could write your own version of |
||
|
|
|
|
The java.util.Properties class won't do this for you. It wouldn't be too difficult to subclass Properties, override the load() method and do the substitution yourself. |
||
|
|
|
|
A new open source project provides variable substitution along with a few other features - although substitution may arguably be the most useful. It is a subclass of java.util.Properties, and will can be used by any other class that may take configuration information as Properties. The new project is on google code, its called eproperties, you can have a look here: http://code.google.com/p/eproperties/ |
||
|
|
|
|
This is what you want, it is a bit old , but may work for your needs. Enabling constant substitution in Property Values
|
||
|
|
|
|
Try this: dir.default=/home/data/in/ dir.proj1=${dir.default}/p1 dir.proj2=${dir.default}/p2 dir.proj3=${dir.default}/p3 |
||