Java Locale Format format(String format, Date date, Locale locale)

Here you can find the source of format(String format, Date date, Locale locale)

Description

format

License

Open Source License

Parameter

Parameter Description
locale can be null

Return

if date is null will return a blank string.

Declaration

public static String format(String format, Date date, Locale locale) 

Method Source Code

//package com.java2s;
/**/*from   ww w  .  j  ava  2s  .  com*/
 * Copyright (c) 2001-2002. Department of Family Medicine, McMaster University. All Rights Reserved.
 * This software is published under the GPL GNU General Public License.
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version. 
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * This software was written for the
 * Department of Family Medicine
 * McMaster University
 * Hamilton
 * Ontario, Canada
 */

import java.text.SimpleDateFormat;

import java.util.Date;

import java.util.Locale;

public class Main {
    /**
     * @param locale can be null
     * @return if date is null will return a blank string.
     */
    public static String format(String format, Date date, Locale locale) {
        if (date == null)
            return ("");

        SimpleDateFormat dateFormatter = null;

        if (locale == null)
            dateFormatter = new SimpleDateFormat(format);
        else
            dateFormatter = new SimpleDateFormat(format, locale);

        return (dateFormatter.format(date));
    }
}

Related

  1. format(Locale locale, String key, Object... arguments)
  2. format(Number number)
  3. format(Number number, Locale locale)
  4. format(Object input, int style)
  5. format(String bundleName, Locale locale, String key, Object arg1)
  6. format(String message, Object[] params)
  7. format(String pattern, Date date)
  8. format12(final long ticks)
  9. formatAdena(long amount)