Java Locale Format formatString(String pattern, Object... args)

Here you can find the source of formatString(String pattern, Object... args)

Description

Format using MesssageFormat but with the ROOT locale

License

Apache License

Declaration

public static String formatString(String pattern, Object... args) 

Method Source Code

//package com.java2s;
/*//  w w  w .  j  ava2 s.com
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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;

import java.util.Locale;

public class Main {
    /**Format using MesssageFormat but with the ROOT locale
     */
    public static String formatString(String pattern, Object... args) {
        return new MessageFormat(pattern, Locale.ROOT).format(args);
    }
}

Related

  1. formatNumberWithThousandSeparator(long number)
  2. formatPCT(Object num)
  3. formatPersent(Object input)
  4. formatSmartDate(Date date)
  5. formatString(Object[] args)
  6. formatString2Date(String dateString)
  7. formattedFromDouble(double d, int scale, Locale locale)
  8. formattedFromLong(long l, Locale locale)
  9. formattedToDouble(String str, Locale loc)