Question

Can you do the following with a Java ResourceBundle?

In the properties file...

example.dynamicresource=You currently have {0} accounts.

At runtime...

int accountAcount = 3;
bundle.get("example.dynamicresource",accountCount,param2,...);

To give a result of

"You currently have 3 accounts."

Was it helpful?

Solution

Not without using the MessageFormat class, such as:

String pattern = bundle.getString("example.dynamicresource");
String message = MessageFormat.format(pattern, accountCount);

OTHER TIPS

On their own, ResourceBundle does not support property placeholders. The usual idea is to take the String you get from the bundle, and stick it into a MessageFormat, and then use that to get your parameterized message.

If you're using JSP/JSTL, then you can combine <fmt:message> and <fmt:param> to do this, which uses ResourceBundle and MessageFormat under the covers.

If you happen to be using Spring, then it has the ResourceBundleMessageSource which does something similar, and can be used anywhere in your program. This MessageSource abstraction (combined with MessageSourceAccessor) is much nicer to use than ResourceBundle.

There are various ways, depending on the view technology you're using. If you're using "plain vanilla" Java (e.g. Swing), then use MessageFormat API as answered before. If you're using a webapplication framework (which is true, if I judge your question history here correctly), then the way depends on the view technology and/or MVC framework you're using. If it is for example "plain vanilla" JSP, then you can use JSTL fmt:message for this.

<fmt:message key="example.dynamicresource">
    <fmt:param value="${bean.accountCount}">
</fmt:message>

If it is for example JSF, you can use h:outputFormat for this.

<h:outputFormat value="#{bundle['example.dynamicresource']}">
    <f:param value="#{bean.accountCount}">
</h:outputFormat>

Best place is to just consult the documentation of the technology/framework you're using (or to tell it here so that we can give better suited and more detailed answers).

Struts have a nice util called MessageResources which does exactly what you ask for....

e.g.

MessageResources resources = getResources(request, "my_resource_bundle"); // Call your bundle exactly like ResourceBundle.getBundle() method
resources.getMessage("example.dynamicresource",accountCount,param2,...);

Limitation It only allows maximum of 3 parameters (i.e. resource attribute, param1, ..., param3).

I suggest using MessageFormat (if you want to use more than 3 parameter values) as suggested by David Sykes.

PS the getResources method is available only in the Struts Action class.

I don't think you can make this work for Non-English properties file.

My message.properties file has the following line:

info.fomat.log.message.start=Starting to parse log message in {0} format.

And my message_fr_FR.properties file has the following line:

info.fomat.log.message.start=A partir d'analyser le message connecter {0} format.

This code works only for the English one

String.format((String) messages .getString(GlobalConstants.MESSAGE_FORMAT_START), GlobalConstants.STR_JSON));

It does NOT replace the placeholder with the value when my language / locale is French :-(

Even MessageFormat.fomat() is no good

I don't believe ResourceBundle can do that itself, but String can:

String.format(bundle.getString("example.dynamicresource"), accountCount);

Remember that when using MessageFormat.format() you need to use a double quote ('') in your resource bundle if you want to express single quote (').

MessageFormoat#format will work for the case like:

greetingTo=Have Param, saying hello {0}

You can declare two methods like this where RB is a instance of ResourceBundle:

/**This is a method that takes the param to substitute the placeholder**/
public String getString(String key, Object... params  ) {
    try {
        return MessageFormat.format(this.RB.getString(key), params);
    } catch (MissingResourceException e) {
        return "[" + key + "]";
    }
}

/**Without a param, this will derectly delegate to ResourceBundle#getString**/
public String getString(String key) {
    try {
        return this.RB.getString(key);
    } catch (MissingResourceException e) {
        return "[" + key + "]";
    }
} 
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top