java 切割时间,提取时间中的年月日
2019独角兽企业重金招聘Python工程师标准>>>
直接通过格式转换的形式即可。举例:
String str0 = “2015年07月05日”;
Date d1 = new SimpleDateFormat(“yyyy年MM月dd日”).parse(str0);//定义起始日期
SimpleDateFormat sdf0 = new SimpleDateFormat(“yyyy”);
SimpleDateFormat sdf1 = new SimpleDateFormat(“MM”);
SimpleDateFormat sdf2= new SimpleDateFormat(“dd”);
String str1 = sdf0.format(d1);
String str2 = sdf1.format(d1);
String str3 = sdf2.format(d1);
System.out.println(“年份为:”+str1);
System.out.println(“月份为:”+str2);
System.out.println(“日为:”+str3);
http://zhidao.baidu.com/link?url=n92WftDvHl-yQHXwF4GGFsBGcj_1NOYzomHPF9317ZZycd4cyNjmR771th3KbahoLbyXqNSJzbAuB6SB6D3v8CvhE8WZGFVjY8NolIYFh7K
转载于:https://my.oschina.net/u/2480757/blog/610249
原文作者:weixin_34365417
原文地址: https://blog.csdn.net/weixin_34365417/article/details/92304057
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_34365417/article/details/92304057
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章