Java Date Format As fmt(String pattern, Object... args)

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

Description

fmt

License

Open Source License

Declaration

private static String fmt(String pattern, Object... args) 

Method Source Code

//package com.java2s;

import java.text.MessageFormat;

public class Main {
    private static String fmt(String pattern, Object... args) {
        return MessageFormat.format(pattern, args);
    }/* www  . j  a  va2 s.  co m*/
}

Related

  1. fmt(double d)
  2. fmt(double num, int minIntDigits, int maxFracDigitis)
  3. fmt(long count)
  4. fmtBdToString(BigDecimal bd, DecimalFormat df)
  5. fmtDate(Date date)
  6. fmtDate(Date date)
  7. fmtDateTime(final Date dateTime, final String simpleDateTimeFormat)