Java Date UTC Parse parseUTCDateToString(Date date)

Here you can find the source of parseUTCDateToString(Date date)

Description

parse UTC Date To String

License

Open Source License

Declaration

public static String parseUTCDateToString(Date date) 

Method Source Code

//package com.java2s;
/*// ww w.java2s . co m
?Developed with the contribution of the European Commission - Directorate General for Maritime Affairs and Fisheries
? European Union, 2015-2016.
    
This file is part of the Integrated Fisheries Data Management (IFDM) Suite. The IFDM Suite 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 3 of the License, or any later version. The IFDM Suite 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 the IFDM Suite. If not, see <http://www.gnu.org/licenses/>.
 */

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    final static String FORMAT = "yyyy-MM-dd HH:mm:ss Z";

    public static String parseUTCDateToString(Date date) {
        return dateToString(date);
    }

    public static String dateToString(Date date) {
        String dateString = null;
        if (date != null) {
            DateFormat df = new SimpleDateFormat(FORMAT);
            dateString = df.format(date);
        }
        return dateString;
    }
}

Related

  1. getUTCDate(int year, int month, int day)
  2. getUTCMidnightZero(Date d)
  3. parseDateAsUTC(String dateString)
  4. parsePartialUTCToDate(String utcDate)
  5. parseToUTCDate(String timestamp, String pattern)
  6. parseUTCToDate(String utcDate)
  7. toUTC(Date date)
  8. toUTC(Date date)
  9. toUTC(Date date)