我有时间milliseconds
,现在我要分开 time
和date
从这些milliseconds
。
我怎样才能做到这一点???
我有时间milliseconds
,现在我要分开 time
和date
从这些milliseconds
。
我怎样才能做到这一点???
你可以使用这样
Calendar cl = Calendar.getInstance();
cl.setTimeInMillis(milliseconds); //here your time in miliseconds
String date = "" + cl.get(Calendar.DAY_OF_MONTH) + ":" + cl.get(Calendar.MONTH) + ":" + cl.get(Calendar.YEAR);
String time = "" + cl.get(Calendar.HOUR_OF_DAY) + ":" + cl.get(Calendar.MINUTE) + ":" + cl.get(Calendar.SECOND);
此功能将给予您毫秒的字符串日期
public static String getFormattedDateFromTimestamp(long timestampInMilliSeconds)
{
Date date = new Date();
date.setTime(timestampInMilliSeconds);
String formattedDate=new SimpleDateFormat("MMM d, yyyy").format(date);
return formattedDate;
}
你可以在毫秒转换为日期对象,然后在时间字符串的格式,只是日期的另一个字符串中提取日期
使用日历来获得不同的时间字段的值:
Calendar cal = Calendar.getInstance();
cal.setTimeInMillis(timeInMillis);
int dayOfMonth = cal.get(Calendar.DAY_OF_MONTH);
int monthOfYear = cal.get(Calendar.MONTH);
转换milliseconds
到Date
实例,并将其传递到所选择的格式:
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");
String myDate = dateFormat.format(new Date(dateInMillis)));