如何将 SimpleDateFormat 与日历一起使用?

时间:2023-04-20
本文介绍了如何将 SimpleDateFormat 与日历一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我有 GregorianCalendar 实例,需要使用 SimpleDateFormat(或者可以与日历一起使用但提供所需的 #fromat() 功能的东西)来获得所需的输出.请建议解决方法与永久解决方案一样好.

I've got GregorianCalendar instances and need to use SimpleDateFormat (or maybe something that can be used with calendar but that provides required #fromat() feature) to get needed output. Please, suggest work arounds as good as permanent solutions.

推荐答案

试试这个:

Calendar cal = new GregorianCalendar();
SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
dateFormat.setTimeZone(cal.getTimeZone());
System.out.println(dateFormat.format(cal.getTime()));

这篇关于如何将 SimpleDateFormat 与日历一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

上一篇:如何在java中将时间设置为日期对象 下一篇:Java:如何获取一个月中的 x 天日期(例如 2012 年

相关文章

最新文章