android系统时间格式转换工具类
代码依旧非常简单,只不过因为这个方法极为常用,因此体现的还是封装的思想。
package com.ctbri.weather.utils; import java.text.SimpleDateFormat; import java.util.Date; public class TimeUtil { public static String notifTimeFormat(long milliseconds) { SimpleDateFormat dateFormat = new SimpleDateFormat("h:mm a"); Date date = new Date(milliseconds); return dateFormat.format(date); } public static String alertTimeFormat(long milliseconds){ SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd HH:mm"); Date date = new Date(milliseconds); return dateFormat.format(date); } }