我们如何从XMLGregorianCalendar中删除时间戳。我只需要在我的JSON中显示日期。我使用mapper.disable(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS)
,但我仍然看到时间戳。
答案 0 :(得分:0)
public String getCurrentDateWithoutTime(){
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String dateWithoutTime = sdf.format(new Date());
return dateWithoutTime;
}