Java TimeZone Format getFormattedTime(Date time, String formatTime, String timezone)

Here you can find the source of getFormattedTime(Date time, String formatTime, String timezone)

Description

get Formatted Time

License

Open Source License

Declaration

public static String getFormattedTime(Date time, String formatTime, String timezone) 

Method Source Code

//package com.java2s;
/* Yougi is a web application conceived to manage user groups or
 * communities focused on a certain domain of knowledge, whose members are
 * constantly sharing information and participating in social and educational
 * events. Copyright (C) 2011 Hildeberto Mendon?a.
 *
 * This application is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation; either version 2.1 of the License, or (at your
 * option) any later version./*  www .  j  a  v a 2  s  . co m*/
 *
 * This application 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 Lesser General Public
 * License for more details.
 *
 * There is a full copy of the GNU Lesser General Public License along with
 * this library. Look for the file license.txt at the root level. If you do not
 * find it, write to the Free Software Foundation, Inc., 59 Temple Place,
 * Suite 330, Boston, MA 02111-1307 USA.
 * */

import java.text.SimpleDateFormat;

import java.util.Date;
import java.util.TimeZone;

public class Main {
    public static String getFormattedTime(Date time, String formatTime, String timezone) {
        if (time == null) {
            return "";
        }

        SimpleDateFormat sdf = new SimpleDateFormat(formatTime);
        TimeZone tz = TimeZone.getTimeZone(timezone);
        sdf.setTimeZone(tz);
        return sdf.format(time);
    }
}

Related

  1. formatTimeZoneOffset(TimeZone timeZone)
  2. getCalendar(String dateString, String dateTimeFormat, String timeZoneName)
  3. getCalendar(String dateString, String format, TimeZone tz)
  4. getDefaultDateFormatWithoutTimeZone( TimeZone zone)
  5. getDefaultDateFormatWithTimeZone()
  6. getSimpleDateFormat(TimeZone timeZone, String pattern)
  7. getString(Date dt, DateFormat df, TimeZone to)
  8. getTimeByZoneAndFormat(Date date, TimeZone zone, String format)
  9. getTimeWithFormat(String stringDate, String dateFormat, DateTimeZone timeZone, Locale locale)