Java Timestamp Format getTimestampFormat(long time)

Here you can find the source of getTimestampFormat(long time)

Description

get Timestamp Format

License

Apache License

Declaration

public static String getTimestampFormat(long time) 

Method Source Code


//package com.java2s;
/*//w  ww.j  a v  a 2s .  c  o m
 * Copyright 2017 github.com/kaaz
 *
 * 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.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    private static final SimpleDateFormat timestamp = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

    public static String getTimestampFormat(long time) {
        try {
            return timestamp.format(new Date(time));
        } catch (Exception e) {
            return "cant figure out (" + time + ")";
        }
    }
}

Related

  1. getTimeStamp(String format)
  2. getTimestamp(String format)
  3. getTimestampFormat()
  4. getTimeStampFormat(Date date)
  5. getTimeStampFormat(Date date)
  6. sortedTimestampFormat(Date date)
  7. stringConvertToTimestamp(String value, String format)
  8. TimeStamp2Date(long timestampString, String formats)
  9. timeStamp2Date(String seconds, String format)