Here you can find the source of getTodayInFormat(String format)
Parameter | Description |
---|---|
format | a parameter |
public static String getTodayInFormat(String format)
//package com.java2s; //License from project: Apache License import java.util.Date; public class Main { /**//ww w .ja v a2 s. c o m * getTodayInFormat * @param format * @return */ public static String getTodayInFormat(String format) { Date td = new Date(); java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat(format); String datenewformat = formatter.format(td); return datenewformat; } }