Java Timestamp Create getTimestampDateDotTime()

Here you can find the source of getTimestampDateDotTime()

Description

Return a timestamp in the format of yyyyMMdd.HHmmss.

License

Apache License

Return

String representation of a timestamp

Declaration

public static String getTimestampDateDotTime() 

Method Source Code

//package com.java2s;
/*//  w  w w . ja v  a 2  s  .co m
 * #%L
 * Leo
 * %%
 * Copyright (C) 2010 - 2014 Department of Veterans Affairs
 * %%
 * 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.*;

public class Main {
    /**
     * Return a timestamp in the format of yyyyMMdd.HHmmss.
     *
     * @return String representation of a timestamp
     */
    public static String getTimestampDateDotTime() {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd.HHmmss");
        return sdf.format(new Date());
    }
}

Related

  1. getTimestampAtMidnightForDaysAgo(int days)
  2. getTimestampBeforeMs(long someMs)
  3. getTimeStampByFormat(String style)
  4. getTimestampDate(long timestamp)
  5. getTimestampDate(Timestamp ts)
  6. getTimestampDiff(int n)
  7. getTimestampedPNGFile(File saveDir)
  8. getTimestampedVideoFileName()
  9. getTimestampFormat()