Does anyone know of a Java library that provides support for the ${var} style substitution in text files?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Velocity ( http://velocity.apache.org ), FreeMarker ( http://freemarker.sourceforge.net/ ) |
||||
|
|
|
Java's MessageFormat class allows for semi-advanced text substitution, with localization and formatting support for numbers, dates and time. And for pluralization, you may even use java.text.ChoiceFormat with MessageFormat. It may be enough for all your text-substitution needs. If not, you can take a look at Apache Velocity (http://velocity.apache.org/) or Freemarker(http://freemarker.sourceforge.net/) |
|||
|
|
Don't pass up StringTemplate it is probably the cleanest separation of data and template concerns and is very robust. |
|||
|
|