Hi all,
Suppose I have following properties file:
this.is.a.property.key.1=value1
this.is.a.property.key.2=value2
this.is.a.property.key.3=value3
this.is.a.property.key.4=value4
this.is.a.property.key.5=value5
this.is.another.key.1=anothervalue1
How can I easily get (one method call?) all properties with the name "this.is.a.property.key" without looking at their suffix?
So, as a result I should have 5 values in an array or list.
Is this possible within Java SE? Or maybe via a library (Commons)?
Thx,
Wim.