Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get message.properties's message as a String in Java.

How can I get it?

share|improve this question

1 Answer

up vote 1 down vote accepted

If it is definied as a message-bundle of the application in faces-config.xml like follows

<application>
    <message-bundle>messages</message-bundle>
</application>

then you can get its name by Application#getMessageBundle()

String messageBundleName = facesContext.getApplication().getMessageBundle();

This way you can get its ResourceBundle instance as follows:

ResourceBundle messageBundle = ResourceBundle.getBundle(messageBundleName);

Finally you can get a message property by key as follows:

String value = messageBundle.getString("property.key");

See also:

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.