Java Formatter Usage Fmt(String format, Object... args)

Here you can find the source of Fmt(String format, Object... args)

Description

Fmt

License

Apache License

Declaration

public static String Fmt(String format, Object... args) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright 2012 Jack Wang/*from www .  j ava 2s. co  m*/
 * 
 * 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.util.Formatter;

public class Main {
    public static String Fmt(String format, Object... args) {
        return new Formatter().format(format, args).toString();
    }
}

Related

  1. displayStackTrace()
  2. echo(Formatter script, String label, String message, String file)
  3. encodeHex(byte[] bytes)
  4. escapeUnicode(String input)
  5. floatForSql(Float f)
  6. format(double value)
  7. format(Locale l, String format, Object... args)
  8. format(String format, Object... args)
  9. format_hh_mm_ss_Optional(final long value)