Possible Duplicate:
How to reference another property in java.util.Properties?
I want to refer to other variables in my properties file, e.g.:
name=World
text=Hello $(name)!
"text" should now be "Hello World!".
I know I could do it by hand but is there anything I could use which does the work for me?