What is the ResourceBundle?

Answers were Sorted based on User's Feedback



What is the ResourceBundle?..

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

What is the ResourceBundle?..

Answer / ravikiran

resource bundle is to save the message as key value pairs

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More Core Java Interview Questions

Does constructor return any value?

0 Answers  


What is heterogeneous in java?

0 Answers  


Is java se free?

0 Answers  


What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?

0 Answers  


What state is a thread in when it is executing?

0 Answers  






What is meant by 'Class access modifiers'?

0 Answers   HCL,


What is tcp and udp?

0 Answers  


What is static block?

0 Answers  


What is a two-pass assembler?

0 Answers   Syntel, Visa,


What are the three best choices for a development environment?

0 Answers  


Relationship between an event-listener interface and an event-adapter class?

1 Answers  


How can you take string into InputStream?

3 Answers  


Categories