其他分享
首页 > 其他分享> > 如何将字符串Date转换为long millseconds

如何将字符串Date转换为long millseconds

作者:互联网

我在字符串中有一个日期,类似于“2012年12月12日”.
如何将其转换为毫秒(长)?

解决方法:

使用SimpleDateFormat

String string_date = "12-December-2012";

SimpleDateFormat f = new SimpleDateFormat("dd-MMM-yyyy");
try {
    Date d = f.parse(string_date);
    long milliseconds = d.getTime();
} catch (ParseException e) {
    e.printStackTrace();
}

标签:date-conversion,epoch,android,java,milliseconds
来源: https://codeday.me/bug/20190919/1812152.html