cancel
Showing results for 
Search instead for 
Did you mean: 

About Resource Bundle

Former Member
0 Kudos

Hi all,

I have doubt about resource bundle. what is resource bundle? where we'll use this resource bundle? .

pls provide solution for this.

thanks & regards,

Sreelaxmi

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

thanks for providing solutions.

former_member185086
Active Contributor
0 Kudos

Hello

Please refer this [thread|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/47ce9b90-0201-0010-59b5-f70826824eee] for detailed explanation.

Best Regards

Satish Kumar

Former Member
0 Kudos
Former Member
0 Kudos

Hi Sreelaxmi

Resource bundles contain locale-specific objects. When your program needs a locale-specific resource, a String for example, your program can load it from the resource bundle that is appropriate for the current user's locale. In this way, you can write program code that is largely independent of the user's locale isolating most, if not all, of the locale-specific information in resource bundles.

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

When your program needs a locale-specific object, it loads the ResourceBundle class using the getBundle method:

ResourceBundle myResources =

ResourceBundle.getBundle("MyResources", currentLocale);

Regards

Ruturaj

matteo_fusi2
Participant
0 Kudos

Hi,

look this documentation

[http://help.sap.com/saphelp_nw04/helpdata/en/2d/e7381138a8d2458f1f4fac32614f71/frameset.htm]

Regards

Matteo