Android Utililty Methods Date Today Get

List of utility methods to do Date Today Get

Description

The list of methods to do Date Today Get are organized into topic(s).

Method

StringgetNowDate()
get Now Date
SimpleDateFormat formatter = new SimpleDateFormat(NORMAL_PATTERN);
Date curDate = new Date(System.currentTimeMillis());
String str = formatter.format(curDate);
return str;