java strtotime,PHP中的strtotime()在Java中?

这篇博客介绍了如何在Java中模仿PHP的strtotime()函数,将用户输入的各种时间格式转换为MySQL DATETIME标准格式。作者提供了一个示例代码,演示了如何使用SimpleDateFormat类解析特定格式的时间字符串,并将其格式化为MySQL所需的格式。
摘要由CSDN通过智能技术生成

I'm looking for an easy way to generate a MySQL DATETIME from any type of time input a user may enter. PHP makes it easy with its strtotime() function that can do:

strtotime(’2004-02-12T15:19:21+00:00′);

strtotime(’Thu, 21 Dec 2000 16:01:07 +0200′);

strtotime(’Monday, January 1st’);

strtotime(’tomorrow’);

strtotime(’-1 week 2 days 4 hours 2 seconds’);

Outputs:

2004-02-12 07:02:21

2000-12-21 06:12:07

2009-01-01 12:01:00

2009-02-12 12:02:00

2009-02-06 09:02:41

I want this in Java!

解决方案

Thanks for the quick reply ChssPly76. Here's my solution, although it's hard coded to handle dates coming in this format: "5 Aug 2009 07:27:51 GMT". Perhaps there is a way to allow it to easily handle other formats in case of a parse exception?

public static String stringToDateTime(String string) {

SimpleDateFormat sdf = new SimpleDateFormat("d MMM yyyy HH:mm:ss z");

Date date;

String sqlDate;

try {

date = sdf.parse(string);

SimpleDateFormat sqlFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

sqlDate = sqlFormat.format(date);

}

catch(ParseException ex) {

sqlDate = string;

}

return sqlDate;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值