Java Date Now getCurrentTime()

Here you can find the source of getCurrentTime()

Description

get Current Time

License

Open Source License

Declaration

public static long getCurrentTime() 

Method Source Code

//package com.java2s;
/**/*from w  ww  . j a  v a  2s.c  om*/
 *  Copyright (c) 2011, Eryptogram.java TAIHEIOT and/or its affiliates. All rights reserved.
 *
 *  Licensed under the TAIHEIOT License, Version 1.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  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 {

    public static long getCurrentTime() {
        return (new Date()).getTime();
    }

    public static String getTime(java.util.Date date) {
        return formatDateHMS(date);
    }

    public static String formatDateHMS(java.util.Date date) {
        String result = "";
        if (date != null) {
            try {
                SimpleDateFormat dateFormater = new SimpleDateFormat("HH:mm:ss");
                result = dateFormater.format(date);
            } catch (Exception ex) {
                ex.printStackTrace();
            }
        }
        return result;
    }
}

Related

  1. getCurrentStringDate()
  2. getCurrentStringDate(String pattern)
  3. getCurrentStringDateYMD()
  4. getCurrentStrTimeMills()
  5. getCurrentTime()
  6. getCurrentTime()
  7. getCurrentTime()
  8. getCurrentTime()
  9. getCurrentTime()