What is the ResourceBundle?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / ravikiran
resource bundle is to save the message as key value pairs
| Is This Answer Correct ? | 1 Yes | 2 No |
How many bits are used to represent unicodde,ASCII,UTF-16 and UTF-8 characters?
why abstract class will have a constructor?
What is an immutable object? How do you create one in java?
Explain some best practices you would apply while using collection in java?
What is Java exception handling?
Differences between C and Java?
how to print a numbers from 1 to 100 with out using control structures?
What are the advantages of packages in java?
What is a Java switch statement, and how can it be used?
Explain the difference between scrollbar and scrollpane?
Explain reverse a linked list recursive java solution?
What is the indent key?