Summary of the conversion problem between MySQL and Java in milliseconds

Source: Internet
Author: User
Tags month name

In the past few days, we have been doing time-based user authentication queries. Because in MySQL, the time field uses the bigint type, all of which are in milliseconds. To convert the millisecond value from the database to the date format, you need to use the functions of the MySQL database. You only need to call the functions in the SQL statement, but there is a problem with my business.
In MySQL, we often use the FROM_UNIXTIME (unix_timestamp, format) function to convert to the date format. The usage is as follows:
--------------------------------- The following is an excerpt from the webpage -----------------------------------------------
Returns a string indicating the time mark, formatted according to the format string. Format can contain the same modifier as the entries listed by the DATE_FORMAT () function.

Format the date value based on the format string.
The following modifiers can be used in a format string:

% M month name (January ...... December)
% W name of the Week (Sunday ...... Saturday)
% D indicates the date of the month with an English prefix (1st, 2nd, 3rd, and so on .)
% Y year, number, 4 digits
% Y year, number, 2 digits
% A abbreviated name of the Week (Sun ...... Sat)
% D number of days in the month (00 ...... 31)
% E number of days in the month (0 ...... 31)
% M month, number (01 ...... 12)
% C month, number (1 ...... 12)
% B abbreviated month name (Jan ...... Dec)
% J days in a year (001 ...... 366)
% H hour (00 ...... 23)
% K hour (0 ...... 23)
% H hour (01 ...... 12)
% I hour (01 ...... 12)
% L hour (1 ...... 12)
% I minute, number (00 ...... 59)
% R time, 12 hours (hh: mm: ss [AP] M)
% T time, 24 hours (hh: mm: ss)
% S seconds (00 ...... 59)
% S seconds (00 ...... 59)
% P AM or PM
% W days in a week (0 = Sunday ...... 6 = Saturday)
% U Week (0 ...... 52). Sunday is the first day of the week.
% U Week (0 ...... 52) Monday is the first day of the week.
% A text "% ".

Example of Timestamp syntax interpretation using MYSQL statements:

SELECT FROM_UNIXTIME (1234567890, '% Y-% m-% d % H: % I: % s ')
------------------------------------- End of transcription -----------------------------------------------------
Since we can convert the millisecond in MySQL to the date format, we also need to convert the date format in the business logic to the millisecond value.
This is a function written by my senior student.
------------------------------------- The code is as follows -----------------------------------------------------
Public static Long timeStrTran1970Seconds (String timeStr) throws java. text. ParseException {
Date stat = null;
Stat = new SimpleDateFormat ("yyyy-MM-dd hh: mm: ss"). parse (timeStr );
If (stat! = Null)
Return stat. getTime ()/1000;
Else
Return 0l;
}


Author: kobi521

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.