public String getDate() throws ParseException{
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("LL dd, yyyy");
LocalDate date = getPublishDate().toInstant().atZone(ZoneId.of("Europe/Kiev")).toLocalDate();
System.out.println(date);
String text = date.format(formatter);
System.out.println(text);
return text;
}
输出:
2016-10-01
10 01, 2016
我想在文本演示中打印月份:2016 年 10 月 1 日。
getPublishDate
- 私有领域的吸气剂Date publishDate
。