easyExcel读取到的日期是一串数字,我们想要直接拿到日期,我们可以在后端转换

2022-05-09 10:47:08 浏览数 (1)

目录

  • 工具类

工具类

代码语言:javascript复制
//得到添加n天后的时间字符串 (excle转换时间)
    public static String getAddDate( int n){
        Calendar calendar = new GregorianCalendar(1900,0,-1);
        Date date = calendar.getTime();
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        //Calendar实例
        Calendar dd = Calendar.getInstance();
        dd.setTime(date);//设置传来的时间
        dd.add(Calendar.DATE, n);//在这个时间基础上加上n天
        String formatDate = sdf.format(dd.getTime());//把时间转换成相应的时间字符串
        return formatDate;//返回时间字符串
    }

就是传这个工具类一个从excle读取到的日期的数字之后,将这个数字传给这个工具类,就返回excle里面的日期了

0 人点赞