Java Message Format formatMessage(String message, Object... args)

Here you can find the source of formatMessage(String message, Object... args)

Description

format Message

License

Apache License

Declaration

private static String formatMessage(String message, Object... args) 

Method Source Code


//package com.java2s;
/*/*from   w  ww .  j  a va 2  s.c  om*/
   Copyright 2013 Rene Nowak 
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
   http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/

import java.text.MessageFormat;

public class Main {
    private static String formatMessage(String message, Object... args) {
        MessageFormat messageFormat = new MessageFormat(message);
        return messageFormat.format(args);
    }
}

Related

  1. formatDuring(long mss, String pattern)
  2. formatError(Map.Entry entry, String errorPlural, String errorSingular)
  3. formatMessage(final String pattern, final Object... params)
  4. formatMessage(final String pattern, final String param1)
  5. formatMessage(String message, Object param1)
  6. formatResource(Object[] info, String require)
  7. formats(String pattern, Object... args)
  8. formatString(ResourceBundle resourceBundle, String key, Object data)
  9. formatString(String format, String arg1)