1
當我做到以下幾點:解析字符串時間使得01:00:00
String start = request.getParameter("startp");
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
long ms=0;
try {
ms = sdf.parse(start).getTime();
} catch (ParseException e1) {
e1.printStackTrace();
}
Time ts = new Time(ms);
它插入該值01:00:00巫不正確的(由用戶輸入)。
我不明白這裏的錯誤。請幫忙。謝謝
用戶輸入了什麼? – OscarRyz 2010-04-28 23:04:25