Re: retrieving multiple values for a key in a properties file

2009-12-18 Thread A. Maza
This is not really a wicket task. It's more a programming problem. String localizedString = Localizer.getString(key); String[] values = localizedString.split(,); Simple isn't it? You really want to decline this method? I was aware of this possibility (which I actually want to avoid for my

retrieving multiple values for a key in a properties file

2009-12-17 Thread A. Maza
Hello, is it somehow possible to retrieve a String array (or a list or something else) for multiple values in a properties file. I want to achieve something like this: I have a properties file with the following entry myKey=firstValue,secondValue,thirdValue,... in a component I would need

Re: retrieving multiple values for a key in a properties file

2009-12-17 Thread Per Newgro
Am 17.12.2009 21:47, schrieb A. Maza: Hello, is it somehow possible to retrieve a String array (or a list or something else) for multiple values in a properties file. I want to achieve something like this: I have a properties file with the following entry