How can I utilize SimpleDateFormat with Calendar?

后端 未结 4 1684
长发绾君心
长发绾君心 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 23:04

    eQui's answer is missing a step

    Calendar cal = new GregorianCalendar();
    SimpleDateFormat dateFormat = new SimpleDateFormat("dd-MM-yyyy");
    #---- This uses the provided calendar for the output -----
    dateFormat.setCalendar(cal); 
    System.out.println(dateFormat.format(cal.getTime()));
    

提交回复
热议问题