advanced code snippet search
nialace on 11/21/10
11/21/10 12:56am
1 person have marked this snippet as a favorite
alexvezeau
String dateFormat = "yyyyMMddHHmmss";java.util.Date lDte_currentDate = new java.util.Date();java.text.SimpleDateFormat mySimpleDate = new java.text.SimpleDateFormat(dateFormat);String dateWithFormat = mySimpleDate.format(lDte_currentDate);
Report this snippet Tweet
Comment:
You need to login to post a comment.