Wednesday, September 24, 2014

Lesson 26: change dateformat in java

caranya mudah sekali, cukup beberapa baris saja.
Contoh:
String date = request.getParameter("date");
//contoh: 01-August-2014
Date converted = new SimpleDateFormat("dd-MMMMM-yyyy").parse(date);
date = new SimpleDateFormat("yyyy-MM-dd").format(converted);
//hasilnya: 2014-08-01

No comments:

Post a Comment