Spring Tool Suite(简称STS)针对SimpleDateFormat.pase函数的实参值不做检验,异常直接默认值之

      Spring Tool Suite(简称STS)是 Spring 团队开发的一款基于Eclipse的IDE,旨在简化开发Spring MVC 应用的流程。可以自动生成spring相关的配置文件。比如applicationContext.xml文件等。但是近来使用 Calendar日历类进行比较日期时,发现before、after函数不能输出预期的结果,于是逐一翻看Calendar源码:

public boolean before(Object when) {

        return when instanceof Calendar
            && compareTo((Calendar)when) < 0;

    }

但是还是没留意到 when instanceof Calendar 这条code。最后决定使用最底层的逻辑:比较getTimeInMillis 。带回家再找原因。

      后来翻看API文档才注意到当且仅当 when 是Calendar实例时才会返回true。

     但是这中间暴露了STS的一个bug。测试代码如:

    @Test
    public void testCalendar(){
        String pattern1 = "YYYY-MM-dd";
        String pattern2 = "yyyy-MM-dd";

        SimpleDateFormat format = new SimpleDateFormat(pattern1);
        Date theD = null ;
        try {
            theD = format.parse("2013-10-10");
        } catch (ParseException e) {
            e.printStackTrace();
        }
        Calendar theC = Calendar.getInstance() ;
        theC.setTime(theD);
        Calendar now = Calendar.getInstance() ;
        System.out.println("theC : "+theC.getTime());
        System.out.println("theC : "+theC.getTimeInMillis());
        System.out.println("new : "+now.getTime());
        System.out.println("new : "+now.getTimeInMillis());
        System.out.println("new is before theC : "+now.before(theC));
    }

   正确情况下赢输出:

theC : Wed Jan 10 00:10:00 CST 3
theC : -62071948200000
new : Tue Sep 10 22:22:15 CST 2013
new : 1378822935807
new is before theC : false

但是实际情况确实

theC : Sun Dec 30 00:00:00 CST 2012
theC : 1356796800000
new : Tue Sep 10 22:31:28 CST 2013
new : 1378823488012
new is before theC : false
可以看到 theC变成了 2012年10月30号

    不论吧pase函数内的实参修改成何值最后输出的都是 10月30号。无果,之后更换IDE。打开传统的myEclipse,Ctrl+C复制黏贴代码。奇迹出现:

直接抛出java.lang.IllegalArgumentException: Illegal pattern character 'Y',原来pattern1格式错误应为pattern2.但是万恶的STS竟然没有抛出任何异常,直接默认为了10月30号。

    看了成熟IDE环境很重要啊。。。   



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值