判断表格某一列是否重复或空

    /**
     * 判断分录表中的某一列是否存在空值
     * @param kdtEntry
     * @param colName
     * @throws BOSException
     */
    public static void checkTableColumnEmpty(
            com.kingdee.bos.ctrl.kdf.table.KDTable kdtEntry, String colName)
            throws BOSException {
        for (int i = 0, n = kdtEntry.getRowCount(); i < n; i++) {
            Object temp = kdtEntry.getRow(i).getCell(colName).getValue();
            if (temp == null || temp.toString().equals("")) {
                throw new BOSException("第" + (i + 1) + "行的"
                        + kdtEntry.getHeadRow(0).getCell(colName).getValue()
                        + "不能为空");
            }
        }
    }

    /**
     * 检查表格某n列是否为空
     * @param kdtEntry:表格
     * @param colNames:列名数组
     * @throws BOSException
     */
    public static void checkTableColumnsEmpty(com.kingdee.bos.ctrl.kdf.table.KDTable kdtEntry,
            String colNames[]) throws BOSException {
        int i = 0;
        for (int n = colNames.length; i < n; i++)
            checkTableColumnEmpty(kdtEntry, colNames[i]);

    }
   
    /**
     * 检查某一列是否重复
     * @param kdtEntry
     * @param colName
     * @throws BOSException
     */
    public static void checkTableColumnRepeat(com.kingdee.bos.ctrl.kdf.table.KDTable kdtEntry, String colName)
            throws BOSException {
        int i = 0;
        for (int n = kdtEntry.getRowCount(); i < n; i++) {
            Object temp = kdtEntry.getRow(i).getCell(colName).getValue();
            for (int j = i + 1; j < n; j++)
                if (temp.equals(kdtEntry.getRow(j).getCell(colName).getValue()))
                    throw new BOSException("第"    + (i + 1)+ "行和第"+ (j + 1)+
                            "行的"+ kdtEntry.getHeadRow(0).getCell(colName).getValue() + "重复");

        }

    }

    public static void checkTableColumnsRepeat(com.kingdee.bos.ctrl.kdf.table.KDTable kdtEntry, String colNames[])
            throws BOSException {
        int i = 0;
        for (int n = colNames.length; i < n; i++)
            checkTableColumnRepeat(kdtEntry, colNames[i]);

    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值