Here you can find the source of getShortStringDate(ZonedDateTime time)
public static String getShortStringDate(ZonedDateTime time)
//package com.java2s; //License from project: Open Source License import java.time.ZonedDateTime; import java.time.format.DateTimeFormatter; public class Main { public static String getShortStringDate(ZonedDateTime time) { return time.format(DateTimeFormatter.ISO_LOCAL_DATE); }/* w ww. j a v a2s. co m*/ }