码迷,mamicode.com
首页 > 编程语言 > 详细

判断数组中是否存在重复的发票号码

时间:2018-10-16 17:48:45      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:校验   数组   mat   rsn   number   name   ring   style   ice   

    // 判断数组中是否存在重复的发票号码
        for(int i = 0; i< invoiceNoList.size(); i++){
            for(int j = i+1; j<invoiceNoList.size(); j++){
                if(invoiceNoList.get(i).equals(invoiceNoList.get(j))){
                    // 数据校验不通过
                //    AssertUtils.isTrue(false, String.format("存在重复的发票号码%s;", invoiceNoList.get(i)));
                    AssertUtils.isTrue(false, "【" + suppliersName + "】<br>登记编号: "
                            + pdfRecord.getStr("registerNumber") + "<br>存在重复的发票号码");
                    break;
                }
            }
        }

 

判断数组中是否存在重复的发票号码

标签:校验   数组   mat   rsn   number   name   ring   style   ice   

原文地址:https://www.cnblogs.com/xiaowoniulx/p/9798671.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!