yyyy-mm-dd 和 hh:mm (PM/AM) 转换为长整型
我有两个字符串:
String date = "2011-11-11"
String time="11:00 PM"
我想合并这个日期和时间并将它们转换为一个长字符串,类似于 System.currentTimeMillis()。
I have two strings:
String date = "2011-11-11"
String time="11:00 PM"
i want to merge this date and time and convert them into a long, similar to System.currentTimeMillis().
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个,效果很好
try this it is working fine
使用 SimpleDateFormat 并将字符串解析为日期。
当您有 Date 时,您可以获得 .getTime() 什么是长
http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html
未测试!
Use SimpleDateFormat and parse the String into a Date.
When you have Date you can get .getTime() what's a long
http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html
NOT TESTED!!
我发现这个SO帖子相同的线条。
I found this SO post in the same lines.