I am doing like this in my android app (java):
String sdt_ = DateFormat.format("yyyyMMdd HH:mm", dt_).toString();
but I got this
01-16 14:31:13.308: D/ThS(25810): dt_ = Wed Jan 16 13:28:00 GMT+00:00 2013
01-16 14:31:23.758: D/ThS(25810): sdt_ = 20130116 HH:28
if I change HH to hh I will get this
sdt_ = 20130116 01:28
but I need this
sdt_ = 20130116 13:28