Calender怎么用
Posted 寂寞的小丑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Calender怎么用相关的知识,希望对你有一定的参考价值。
首先Calendar 是个抽象类,所以不能new 对象
public abstract class Calendar implements Serializable...
通过getInstance()得到一个Calender
Calendar c = Calender.getInstance();
通常是这么使用Calender的:
DateFormat dateFormat = DateFormat.getDateInstance(DateFormat.FULL);
GregorianCalendar cal = new GregorianCalendar();
cal.setTime(new Date());
System.out.println("System Date: " + dateFormat.format(cal.getTime()));
以上是关于Calender怎么用的主要内容,如果未能解决你的问题,请参考以下文章