|
|
@ -80,7 +80,7 @@ public class DateUtils {
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public static Date strToDate(String strDate) {
|
|
|
|
public static Date strToDate(String strDate) {
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
|
|
|
|
ParsePosition pos = new ParsePosition(0);
|
|
|
|
ParsePosition pos = new ParsePosition(0);
|
|
|
|
Date strtodate = formatter.parse(strDate, pos);
|
|
|
|
Date strtodate = formatter.parse(strDate, pos);
|
|
|
|
return strtodate;
|
|
|
|
return strtodate;
|
|
|
|