Here you can find the source of dateToString(Date date)
public static String dateToString(Date date)
//package com.java2s; /*// w ww . j ava 2s. c om * Commons-Utils * Copyright (c) 2017. * * Licensed under the Apache License, Version 2.0 (the "License") */ import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static final String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss"; public static String dateToString(Date date, String pattern) { return dateToString(date, pattern, TimeZone.getDefault()); } public static String dateToString(Date date) { return dateToString(date, YYYY_MM_DD_HH_MM_SS, TimeZone.getDefault()); } public static String dateToString(Date date, String pattern, TimeZone timezone) { SimpleDateFormat dateFormat = null; if (null == pattern || "".equals(pattern)) { dateFormat = new SimpleDateFormat(YYYY_MM_DD_HH_MM_SS); } else { dateFormat = new SimpleDateFormat(pattern); } dateFormat.setTimeZone(timezone); return dateFormat.format(date); } }