I\'m sure there are a lot of methods, but what\'s the recommended way to do this that has the least amount of impact to your code?
The obvious is that you create pr
Java 6 SE allows you to reload resource bundles on the fly. Just call the clearCache() static function of the ResourceBundle class. Then call getBundle () again.
clearCache()
ResourceBundle
getBundle ()
See this article under Cache Controls