Android Long to Date Convert encodeDate(long date)

Here you can find the source of encodeDate(long date)

Description

Encode a long date to string value in Z format (see RFC 3339)

License

Apache License

Parameter

Parameter Description
date Date in milliseconds

Return

String

Declaration

public static String encodeDate(long date) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Software Name : RCS IMS Stack// ww  w  .  j  a v a  2s  . co  m
 *
 * Copyright (C) 2010 France Telecom S.A.
 *
 * 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.
 ******************************************************************************/

import java.util.TimeZone;
import android.text.format.Time;

public class Main {
    /**
     * UTC time zone
     */
    private static TimeZone UTC = TimeZone.getTimeZone("UTC");

    /**
     * Encode a long date to string value in Z format (see RFC 3339)
     * 
     * @param date Date in milliseconds
     * @return String
     */
    public static String encodeDate(long date) {
        Time t = new Time(UTC.getID());
        t.set(date);
        return t.format3339(false);
    }
}

Related

  1. convertToTimeStamp(long time, boolean showSeconds)
  2. dateFromUnixTimestamp(final long unixTimestamp)
  3. dateFromUtc(long milliseconds)
  4. dateUtil(long date)
  5. daysSinceTimestamp(long timestamp)
  6. format(String aFormat, long aDate)
  7. formatDuration(Context context, long millis)
  8. formatDurationShort(Context context, long millis)
  9. formatPublishDaysAgo(long timestamp)