Here you can find the source of formatNow(String style)
public static String formatNow(String style)
//package com.java2s; //License from project: Apache License import java.text.SimpleDateFormat; public class Main { public static String formatNow(String style) { return new SimpleDateFormat(style).format(System.currentTimeMillis()); }//from www .ja v a 2s . co m public static String format(Object time, String style) { return new SimpleDateFormat(style).format(time); } }