up vote 9 down vote favorite
1
share [g+] share [fb]
## 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?

link|improve this question

68% accept rate
You can use Apache Commons Configuration. – Laurent G. Aug 26 '11 at 7:07
feedback

5 Answers

This is what you want, it is a bit old , but may work for your needs.

Enabling constant substitution in Property Values

You can substitute a constant anywhere in the property value, and even have more than one constant within a value, as in the following example:

CONST_1 = shoes and ships
CONST_2 = sealing wax
SomeValue = {CONST_1} and {CONST_2}

In this example, the "SomeValue" property evaluates to "shoes and ships and sealing wax."

link|improve this answer
Yes, it's old, but it works and doesn't pull in gobs of dependencies, or try to do too much. – Terrel Shumway Jan 15 '11 at 18:26
feedback

Standard properties files are just key-value pairs. In the text format, Properties just separates key from value and does some simple things such as allowing escaped characters. You might be able to define entities in the verbose XML syntax.

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 Properties or do the substitution when generating the file.

link|improve this answer
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/

link|improve this answer
Only one jar to install and to use, given you have appache common logging in your classpath. An overview of the syntax here. – Vladtn Jan 22 at 20:51
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.

link|improve this answer
feedback

In this particular case (and in others too), you'd better resolve the duplication by defining different properties:

  1. change: dir.proj1=dir.default /p1 into dir.proj1_extension=/p1
  2. prepend: dir.default to dir.proj1_extension to get the full location of proj1 in your application code.

Do the same for the other projects.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.