Java Timestamp Create createTimeStamps()

Here you can find the source of createTimeStamps()

Description

Creates TimeStamp For Logging.

License

Open Source License

Return

timeStamp details from Current Time.

Declaration

public static String createTimeStamps() 

Method Source Code

//package com.java2s;
/**/*from w  w w .jav a  2s.com*/
 * Copyright 2014 Comcast Cable Communications Management, LLC
 *
 * This file is part of CATS.
 *
 * CATS is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * CATS is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with CATS.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.text.SimpleDateFormat;

public class Main {
    /**
     * Creates TimeStamp For Logging.
     * 
     * @return timeStamp details from Current Time.
     */
    public static String createTimeStamps() {
        java.util.Date today = new java.util.Date();
        SimpleDateFormat date1 = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss.SSS");
        return (date1.format(today));
    }
}

Related

  1. createTimestamp(final int aYear, final int aMonth, final int aDate, final int aHour, final int aMinute, final int aSecond)
  2. createTimestamp(final int year, final int month, final int day, final int hour, final int minute, final int second)
  3. createTimestamp(int month, int day)
  4. createTimestampedZipFilename(String prefix)
  5. createTimestampFormat()
  6. getTimestamp()
  7. getTimestamp()
  8. getTimestamp()
  9. getTimestamp()