时间格式化

在Android开发过程中,总会遇到要进行时间格式化的地方。下面简单记录一下时间格式化。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

public class DateFormatUtil {

public static String time;
/**
*将yyyyMMdd格式转换为yy-MM-dd
*/
public static String dateFormat(String str) {
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyyMMdd");
Date date = null;//解析字符串,转化为Date
try {
date = simpleDateFormat.parse(str);
simpleDateFormat = new SimpleDateFormat("yy-MM-dd");
time = simpleDateFormat.format(date);//格式化String类型
} catch (ParseException e) {
e.printStackTrace();
}
return time;
}
}