本文主要是介绍Android中日期时间格式转换,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
将日期转换为相应的格式:
Date date = new Date();String time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());String years = new SimpleDateFormat("yyyy").format(new Date());String month = new SimpleDateFormat("MM").format(new Date());String day = new SimpleDateFormat("dd").format(new Date());System.out.println(time);System.out.println(years+month+day);
这篇关于Android中日期时间格式转换的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!