Here you can find the source of convertToString(Date date, String style)
public static String convertToString(Date date, String style)
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class Main { public static String convertToString(Date date, String style) { SimpleDateFormat df = new SimpleDateFormat(style); return df.format(date); }/* w ww. jav a 2s. co m*/ public static String convertToString(Date date, String style, TimeZone tz) { SimpleDateFormat df = new SimpleDateFormat(style); df.setTimeZone(tz); return df.format(date); } }