dateformat
Hi, I go a small prob, hope someone can help mi
String past = "30/12/01";
java.text.SimpleDateFormat x = new java.text.SimpleDateFormat("dd/mm/yy");
java.util.Date mypastDate = x.parse(past);
out.println(mypastDate);
by right, this output should be 30/12/01 but it give mi this output, how come?
Tue Jan 30 00:12:00 GMT+08:00 2001
anyone? thx!

