All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.utils.TimeNow Maven / Gradle / Ivy

/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
 @LICENSE@
 *
 * ---------------
 * TimeNow.java
 * ---------------
 */
package org.jpedal.utils;

import java.text.DateFormat;
import java.util.Calendar;

/**
 * return date of time now
 * int shortdate format
 * 
This class is NOT part of the API */ public class TimeNow { ////////////////////////////////////////////////////////////////////////// /** * get date as YYYYMMDDHHMMSS */ public static final String getShortTimeNow() { final Calendar now = Calendar.getInstance(); return now.get(Calendar.YEAR) + format(1 + now.get(Calendar.MONTH)) + format(now.get(Calendar.DAY_OF_MONTH)) + format(now.get(Calendar.HOUR_OF_DAY)) + format(now.get(Calendar.MINUTE)) + format(now.get(Calendar.SECOND)); } ///////////////////////////////////////////////////////////////////////// /** * get Time as a string */ public static final String getTimeNow() { final DateFormat short_date = DateFormat.getDateInstance(); final DateFormat short_time = DateFormat.getTimeInstance(DateFormat.SHORT); return (short_date.format(new java.util.Date()) + ' ' + short_time.format(new java.util.Date())); } ///////////////////////////////////////////////////////////////////////// /** * pad out to 2 chars */ private static String format(final int number) { String value = String.valueOf(number); if (value.length() == 1) { value = '0' + value; } return value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy