Java UTC Date getUtcDateStringFromTimestamp(Date timeStamp)

Here you can find the source of getUtcDateStringFromTimestamp(Date timeStamp)

Description

Convert timestamp to UTC format date string.

License

Open Source License

Parameter

Parameter Description
timeStamp UTC timestamp to be converted to the UTC Date format.

Return

UTC formatted Date string from timestamp.

Declaration

public static String getUtcDateStringFromTimestamp(Date timeStamp) 

Method Source Code


//package com.java2s;
/*-/*from   w  w w  .  j a  v a  2s.  com*/
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

import java.text.DateFormat;
import java.text.SimpleDateFormat;

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

public class Main {
    private static final String UTC_DATE_FORMAT = "dd MMM yyyy kk:mm:ss z";

    /**
     * Convert timestamp to UTC format date string.
     *
     * @param timeStamp UTC timestamp to be converted to the UTC Date format.
     * @return UTC formatted Date string from timestamp.
     */
    public static String getUtcDateStringFromTimestamp(Date timeStamp) {
        DateFormat df = new SimpleDateFormat(UTC_DATE_FORMAT);
        df.setTimeZone(TimeZone.getTimeZone("GMT"));
        return df.format(timeStamp);
    }
}

Related

  1. getUTCCalendarFromDialogString(String dateString)
  2. getUTCDate()
  3. getUtcDate(String date, String pattern)
  4. getUTCDateFromString(String date)
  5. getUtcDateString()
  6. GetUTCdatetimeAsString()
  7. GetUtcNow()
  8. getUTCTime()
  9. getUTCTime()