标签:str 字符串 12月 格式化 tin bsp col instance 一个
1、日期类
Calendar calendar=Calendar.getInstance();//单例
2、日期格式化类
Date date=new Date();
SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss");
String time=sdf.format(date);//把日期转换为指定格式的字符串
String birthday="2000年12月26日 11::29:08";
Date date2=sdf.parse(birthday);//指定的字符串格式必须与SimpleDateFormat的格式一致;把一个字符串转换成对应的日期
3、
标签:str 字符串 12月 格式化 tin bsp col instance 一个
原文地址:http://www.cnblogs.com/boling1/p/7979417.html