What is the ResourceBundle?
Answer Posted / ajay
ResourceBundle is a property file handler with locales
support, it allows you to support multiple languages in
your application. There's a full explaination on what
ResourceBundle is and how it has to be used in the javadoc.
Yes, 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.
The advantages of using ResourceBundle taken from the
javadoc This allows you to write programs that can:
be easily localized, or translated, into different
languages
handle multiple locales at once
be easily modified later to support even more locales
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What occurs when an object is constructed?
What is final?
What is the difference between jvm and jre? What is an interface?
How will you reverse a singly-link list?
What is a vector in java?
What is the difference between serial and throughput garbage collector?
What is string in java?
What is volatile data type?
What do you understand by the term wrapper classes?
What are different types of states exist for a thread?
Why put method is idempotent?
what are the disadvantages of indexes in oracle?
What are the two types of exceptions in java? Which are the differences between them?
Explain the purpose of garbage collection in Java?
What is the size of arraylist in java?