## 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?
is this possible?
| ||||
feedback
|
|
This is what you want, it is a bit old , but may work for your needs. Enabling constant substitution in Property Values
| |||
feedback
|
|
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 | |||
|
feedback
|
|
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/ | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
In this particular case (and in others too), you'd better resolve the duplication by defining different properties:
Do the same for the other projects. | |||
|
feedback
|