Java Second Format secondsToHumanDate(long seconds)

Here you can find the source of secondsToHumanDate(long seconds)

Description

seconds To Human Date

License

Apache License

Declaration

public static String secondsToHumanDate(long seconds) 

Method Source Code

//package com.java2s;
/*//from  w  ww .jav a2s  .c  om
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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;
import java.util.TimeZone;

public class Main {
    private static TimeZone CURRENT_TIME_ZONE = TimeZone.getDefault();

    public static String secondsToHumanDate(long seconds) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        sdf.setTimeZone(CURRENT_TIME_ZONE);
        Date t = new Date();
        t.setTime(seconds * 1000);
        return sdf.format(t);
    }

    public static String format(long milliseconds, String format) {
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        sdf.setTimeZone(CURRENT_TIME_ZONE);
        Date t = new Date();
        t.setTime(milliseconds);
        return sdf.format(t);
    }
}

Related

  1. removeSecondsFromDateString(String sdate)
  2. Second2DateString(int v)
  3. secondsBetween(String from, String to, String format)
  4. secondsToDHMSString(double seconds)
  5. secondstoHM(long sec)
  6. secondsToString(long seconds)
  7. secondsToStringFormat(long seconds)
  8. secondsToTime(double seconds)
  9. secondsToTimeString(long numSeconds)