Here you can find the source of dateFormatJson(Date date)
public static String dateFormatJson(Date date)
//package com.java2s; //License from project: Apache License import java.sql.Date; import java.util.Calendar; public class Main { public static String dateFormatJson(Date date) { Calendar cal = Calendar.getInstance(); cal.setTime(date);/*from w w w .j a va 2 s . c o m*/ int year = cal.get(Calendar.YEAR); int month = cal.get(Calendar.MONTH) + 1; int day = cal.get(Calendar.DAY_OF_MONTH); return year + "," + month + "," + day; } }