Hi I am using resource bundle from propertied file to fetch keys and values, like following:
ResourceBundle resouce = ResourceBundle.getBundle("", Locale.getDefault()); Enumeration bundleKeys = resouce.getKeys();
Above code fetches all the keys which is time taking. I want to fetch particular keys with some format. e.g. keys starting with a particular keyword.
Thanks.