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 |
What is boolean logic?
Why should we create an object? what is a need of it? Apart from access members of a class i want what is a need of object what does it contain?? In normal class to access any member of thaht class we create object where as for static class we access its members using class name. what is a difference between them... thanks in advance.
what really hapens when a object is created using new operator? 1.is it allocates memory to all variables and methods in the class with reference to that object?
What is OOP's Terms with explanation?
could you run the java program without main method?
Can there be an abstract method without an abstract class?
what are literals in java?
What is ++ a in java?
Can subclass overriding method declare an exception if parent class method doesn't throw an exception?
When is finally block not called?
What is hypertext?
Java is Pass by Value or Pass by Reference?