java中各种时间格式的转化(包含java多数情况下时间的转换)

如果你想设置一个时间从一天的开始到一天的结束,那么你先要设置日期的格式为yyyy-MM-dd,然后在设置一个日期的格式为yyyy-MM-dd HH:mm:ss,然后在之前的日期格式上加上00:00:00-23:59:59转换成该日期格式,就可以设置区间为1天了。代码如下


        如果时间为年月日,可以增加时分秒
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        SimpleDateFormat  sdfSearch = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        if(vo.getRqStart() != null) {
            vo.setRqStart(sdfSearch.parse(sdf.format(vo.getRqStart()) + " 00:00:00"));
      }
        if(vo.getRqEnd() != null) {
           vo.setRqEnd(sdfSearch.parse(sdf.format(vo.getRqEnd()) + " 23:59:59"));
      }

设置指定的日期,代码如下


//      设定指定的日期
        Calendar calendar = Calendar.getInstance();
        calendar.setTime(date);
        calendar.add(Calendar.DATE,1);  //当前时间的后一天
//        calendar.add(Calendar.DAY_OF_MONTH,1);
        calendar.set(Calendar.HOUR_OF_DAY,0);  //小时
        calendar.set(Calendar.MINUTE, 0);  //分钟
        calendar.set(Calendar.SECOND, 0);  //秒数
        sdf.format(calendar.getTime());

时间格式转换以及结果对比,代码如下


//把date转成以下格式
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");//------------------------------------------
        Timestamp arriveTime = reinfotocw.get(0).getArriveTime();
        //获取当前时间转成毫秒
        Calendar calendar=Calendar.getInstance();
        long timeInMillis = calendar.getTimeInMillis();

        //获取得到的时间转成毫秒
        Calendar calendar1 = Calendar.getInstance();
        calendar1.setTime(arriveTime);
        long timeInMillis1 = calendar1.getTimeInMillis();

        if(timeInMillis

你可能感兴趣的:(java中各种时间格式的转化(包含java多数情况下时间的转换))