SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd 24hh:mi:ss");String s = sdf.format(new Date());//date转stringDate date = sdf.parse(s);//string转date