What timestamp format is this 20130218001203638? -


After

I am working with a dataset and I am unable to understand the format of this 16 digit timestamp. If this is understandable to anybody, please let me know 20130218001203638

I do not have a link to any real common timestamp format documentation. I had guessed its own based on some Java code. (I did not come with the format.)

I have taken advantage of a date format class.

  / * * passed in time to milliseconds * A y2 date string of the format @return:. YearMonthDayHourMinuteSecondMillisecond * / Public Static String getY2MillisecondDate (Gregorian Calendar Today) {New SimpleDateFormat ("yyyyMMddHHmmssSS") Return format (today.getTime ()); }   

can see from the pasted function, my call this call a y2 millisecond string. As the other y2 date format string is defined as yyyyMMdd . .

Edit:
I did some search and I would like to do some research. Done yyyyMMdd is called "year-2000 format" and appears standardized as "basic format"

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -