SimpleDateFormat对时间的的操作,Date与String之间的互相转换

public class test2 {

    /**
     * @param args
     * @throws ParseException
     */
    public static void main(String[] args) throws ParseException {
        // TODO Auto-generated method stub
        SimpleDateFormat shijian=new SimpleDateFormat("HH:mm:ss");
        SimpleDateFormat sf = new SimpleDateFormat("HH:mm:ss", Locale.ENGLISH);
        
        String time=shijian.format(new Timestamp(System.currentTimeMillis()));
        String time2="15:14:36";
        
        if(sf.parse(time).getTime()>sf.parse(time2).getTime()){
            System.out.println(1);
        }else{
            System.out.println(2);
        }
    }

}

你可能感兴趣的:(SimpleDateFormat对时间的的操作,Date与String之间的互相转换)