Get Date based on day count in Java

后端 未结 7 1150
感情败类
感情败类 2021-01-13 21:46

Simple Question, but Google surprisingly had little on this. I have the number of days from Jan 1st of the year. How can I convert that to a date i

7条回答
  •  無奈伤痛
    2021-01-13 22:08

    Calendar c = Calendar.getInstance();
             c.set(Calendar.YEAR, 2016);
             c.set(Calendar.MONTH, 8);
             c.set(Calendar.DAY_OF_YEAR, 244);
             c.set(Calendar.HOUR, 0);
             c.set(Calendar.MINUTE, 0);
             c.set(Calendar.SECOND, 0);
             c.set(Calendar.MILLISECOND, 0);
            Date date = c.getTime();
    

提交回复
热议问题