thinkinterview » interview questions
« Previous

interview Questions

next »
question What is the ResourceBundle class? What is the main use of this class?
Answer Description: The ResourceBundle class is used to store locale-specific resources that can be loaded by a program to tailor the program's appearance to the particular locale in which it is being run. ResourceBundle is a property file handler with locales support, it allows us to support the multiple languages in the application. ResourceBundle can be used instead of the Properties class. It would be particularly usefull when developing applications for different languages. The ResourceBundle class will find the correct properties file based on the current user locale.

Next Queston » Why there are no global variables in Java?...
Why there are no global variables in Java?View full queston »

Posted in: Java(30) |