Java Resource Message getMessage(ResourceBundle bundle, String key, Object... params)

Here you can find the source of getMessage(ResourceBundle bundle, String key, Object... params)

Description

Get the i18n string message with an associated resource bundle

License

Open Source License

Parameter

Parameter Description
bundle resourceBundle
key the key for the desired string
params the message substitution parameters

Return

the formated string for the given key

Declaration

public static String getMessage(ResourceBundle bundle, String key, Object... params) 

Method Source Code


//package com.java2s;
/*/*from  ww  w  .j a  va  2  s. c  o m*/
 * JBoss, Home of Professional Open Source.
 * Copyright 2011, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import java.text.MessageFormat;

import java.util.MissingResourceException;
import java.util.ResourceBundle;

public class Main {
    /**
     * Get the i18n string message with an associated resource bundle
     * @param bundle resourceBundle
     * @param key    the key for the desired string
     * @param params the message substitution parameters
     * @return the formated string for the given key
     */
    public static String getMessage(ResourceBundle bundle, String key, Object... params) {
        String fmt = null;
        try {
            if (null == bundle) {
                return key;
            }
            fmt = bundle.getString(key);
        } catch (MissingResourceException ex) {
            return key;
        }
        return MessageFormat.format(fmt, params);
    }
}

Related

  1. getMessage(Locale locale, String key, Object... args)
  2. getMessage(Locale locale, String key, String... args)
  3. getMessage(Properties prop, String key, Object... args)
  4. getMessage(Properties props, String key, Object param)
  5. getMessage(ResourceBundle bundle, Object key, Object[] params)
  6. getMessage(ResourceBundle bundle, String key, Object... params)
  7. getMessage(ResourceBundle messages, String messageKey)
  8. getMessage(ResourceBundle messages, String msgKey, Object[] arguments)
  9. getMessage(String bundleName, Locale locale, String key, String defaultMsg)