Java Timestamp Format getFormattedDateFromTimestamp(long timestamp)

Here you can find the source of getFormattedDateFromTimestamp(long timestamp)

Description

get Formatted Date From Timestamp

License

Apache License

Declaration

public static String getFormattedDateFromTimestamp(long timestamp) 

Method Source Code


//package com.java2s;
/*/*w  w  w.j a  va  2 s  .  co m*/
 * #%L
 * =====================================================
 *   _____                _     ____  _   _       _   _
 *  |_   _|_ __ _   _ ___| |_  / __ \| | | | ___ | | | |
 *    | | | '__| | | / __| __|/ / _` | |_| |/ __|| |_| |
 *    | | | |  | |_| \__ \ |_| | (_| |  _  |\__ \|  _  |
 *    |_| |_|   \__,_|___/\__|\ \__,_|_| |_||___/|_| |_|
 *                             \____/
 * 
 * =====================================================
 * 
 * Hochschule Hannover
 * (University of Applied Sciences and Arts, Hannover)
 * Faculty IV, Dept. of Computer Science
 * Ricklinger Stadtweg 118, 30459 Hannover, Germany
 * 
 * Email: trust@f4-i.fh-hannover.de
 * Website: http://trust.f4.hs-hannover.de/
 * 
 * This file is part of irongui, version 0.4.8,
 * implemented by the Trust@HsH research group at the Hochschule Hannover.
 * %%
 * Copyright (C) 2010 - 2015 Trust@HsH
 * %%
 * 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.
 * #L%
 */

import java.text.SimpleDateFormat;
import java.util.Calendar;

public class Main {
    private static SimpleDateFormat mDateFormatDump = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
    private static Calendar mCalendar = Calendar.getInstance();

    public static String getFormattedDateFromTimestamp(long timestamp) {
        mCalendar.setTimeInMillis(timestamp);
        return mDateFormatDump.format(mCalendar.getTime());
    }

    public static String getFormattedDateFromTimestamp(String timestamp) {
        try {
            long time = Long.parseLong(timestamp);
            return getFormattedDateFromTimestamp(time);
        } catch (NumberFormatException e) {
            return timestamp;
        }
    }
}

Related

  1. friendlyTimestampFormat()
  2. getCalendar(String timeStamp, final String dateFormat)
  3. getEpochTime(String dateTimeStamp, SimpleDateFormat dateFormat)
  4. getFormatForTimestamp( final Calendar now, final Calendar timestamp)
  5. getFormattedDate(String timestamp)
  6. getFormattedTime(long timestamp, String format)
  7. getFormattedTimestamp()
  8. getFormattedTimestamp(@Nonnull Date date)
  9. getFormattedTimestamp(File file)