How can I utilize SimpleDateFormat with Calendar?

后端 未结 4 1683
长发绾君心
长发绾君心 2020-12-07 22:46

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 ge

4条回答
  •  难免孤独
    2020-12-07 22:50

    Try this:

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

提交回复
热议问题