Here you can find the source of format2(Date data)
public static String format2(Date data)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; import java.util.*; public class Main { public static SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy"); private static SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy_MM_dd"); public static String format2(Date data) { return sdf2.format(data); }/*from w ww .j av a 2s . c om*/ public static String format(Date data) { return sdf.format(data); } }