cancel
Showing results for 
Search instead for 
Did you mean: 

How can I retrieve the value from Resouce Bundle...

Former Member
0 Kudos

Hi All,

I am trying to retrieve the property value as :

property.getStringValue();

But here I am getting key of the Resource Bundle.How can I achieve the value instead of key.

Thanks,

Kumar.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member189326
Active Participant
0 Kudos

Is this working for you now? This thread is marked as unanswered. If it's not working, can you please explain what you are trying to do in a little more detail?

Former Member
0 Kudos

Hi

Are you trying to retrieve the value of any key in the resource bundle or the value of any custom property?

If its resource bundle, try giving:

ResourceBundle resourcebundle = request.getResourceBundle();

resourcebundle.getString("key");

Regards,

Yoga