I need to know what exactly is ResourceBundle, and what exactly does its getBundle() do? Does it read off a properties file?
Tom Ben
Ranch Hand
Joined: Aug 17, 2001
Posts: 109
posted
0
Here is what it says from the Documentation When your program needs a locale-specific object, it loads the ResourceBundle class using the getBundle method: ResourceBundle myResources = ResourceBundle.getBundle("MyResources", currentLocale); ------------------ Sun Certified Programmer on the Java 2 Platform