获取Android中的日月份对象的值

获取Android中的日月份对象的值

本文介绍了获取Android中的日月份对象的值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 使用以下代码: SimpleDateFormat format = new SimpleDateFormat(yyyy-MM-dd HH:mm:ss ); Date date = format.parse(dtStart); 返回日期; 我已经按日期对象转换字符串日期并获取价值... - -----> Sun Feb 17 07:00:00 GMT 2013< --------------- 现在我想要在这里提取日(星期日/星期一)和月份表格任何帮助?解决方案 import android.text.format.DateFormat; String dayOfTheWeek =(String)DateFormat.format(EEEE,date); // Thursday String day =(String)DateFormat.format(dd,date); // 20 String monthString =(String)DateFormat.format(MMM,date); // Jun String monthNumber =(String)DateFormat.format(MM,date); // 06 String year =(String)DateFormat.format(yyyy,date); // 2013 By Using this code :SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");Date date = format.parse(dtStart);return date;I have converted the String Date by Date Object and Get the Value ...------> Sun Feb 17 07:00:00 GMT 2013 <---------------Now i want to Extract Day (Sunday /Monday ) and Month form here any help ???? 解决方案import android.text.format.DateFormat;String dayOfTheWeek = (String) DateFormat.format("EEEE", date); // ThursdayString day = (String) DateFormat.format("dd", date); // 20String monthString = (String) DateFormat.format("MMM", date); // JunString monthNumber = (String) DateFormat.format("MM", date); // 06String year = (String) DateFormat.format("yyyy", date); // 2013 这篇关于获取Android中的日月份对象的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-02 17:01