一、数据验证概述

推荐以下操作在2007之后操作

1.1、查看excel的数据验证

1、进入

  

2、设置规则

      

通过验证条件允许,可以看到是每个单元格默认只成立一种条件

1.2、POI代码开发-数据验证

1.2.1、两个数之间

  1. public void excelRuleNumberBetween(Sheet sheet, int min, int max, int firstRow, int lastRow, int firstCol, int lastCol){
  2. DataValidationHelper helper = sheet.getDataValidationHelper();
  3. CellRangeAddressList addressList = new CellRangeAddressList(firstRow, lastRow, firstCol, lastCol);//设置行列范围
  4. //设置数据
  5. DataValidationConstraint constraint = helper.createIntegerConstraint(DataValidationConstraint.OperatorType.BETWEEN,
  6. String.valueOf(min),String.valueOf(max));
  7. DataValidation dataValidation = helper.createValidation(constraint, addressList);
  8. dataValidation.createErrorBox("输入值类型或大小有误", String.format("请输入%s~%s之间的数值",min,max));
  9. //处理Excel兼容性问题
  10. if(dataValidation instanceof XSSFDataValidation) {
  11. dataValidation.setSuppressDropDownArrow(true);
  12. dataValidation.setShowErrorBox(true);
  13. }else {
  14. dataValidation.setSuppressDropDownArrow(false);
  15. }
  16. sheet.addValidationData(dataValidation);
  17. }

1.2.2、选择【序列】

  1. public void excelRuleSelect(Sheet sheet, String[] rule, int firstRow, int lastRow, int firstCol, int lastCol) {
  2. DataValidationHelper helper = sheet.getDataValidationHelper();
  3. CellRangeAddressList addressList = new CellRangeAddressList(firstRow, lastRow, firstCol, lastCol);
  4. DataValidationConstraint constraint = helper.createExplicitListConstraint(rule);
  5. DataValidation dataValidation = helper.createValidation(constraint, addressList);
  6. dataValidation.createErrorBox("输入有误", "请选择下拉参数");
  7. if (dataValidation instanceof XSSFDataValidation) {
  8. dataValidation.setSuppressDropDownArrow(true);
  9. dataValidation.setShowErrorBox(true);
  10. } else {
  11. dataValidation.setSuppressDropDownArrow(false);
  12. }
  13.  
  14. sheet.addValidationData(dataValidation);
  15. }

1.2.3、列唯一

  使用excel设置

    

  POI设置

  1. public void excelRuleUniqueue(Sheet sheet, int firstRow, int lastRow, int firstCol, int lastCol) {
  2. Row row = sheet.getRow(0);
  3. Cell cell = row.getCell(firstCol);
  4. String r = ((XSSFCell) cell).getCTCell().getR();
  5. r = r.substring(0, 1);
  6. DataValidationHelper helper = sheet.getDataValidationHelper();
  7. CellRangeAddressList addressList = new CellRangeAddressList(firstRow, lastRow, firstCol, lastCol);
  8. //唯一
  9. DataValidationConstraint constraint = helper.createCustomConstraint(MessageFormat.format("COUNTIF({0}:{0},{0}2)=1",r));
  10. DataValidation dataValidation = helper.createValidation(constraint, addressList);
  11. dataValidation.createErrorBox("错误:", "赋值属性列不允许重复");
  12. dataValidation.setShowErrorBox(true);
  13. dataValidation.setEmptyCellAllowed(true);
  14. dataValidation.setSuppressDropDownArrow(true);
  15. dataValidation.setShowPromptBox(true);
  16. dataValidation.setErrorStyle(DataValidation.ErrorStyle.STOP);
  17.  
  18. sheet.addValidationData(dataValidation);
  19. }

二、其他

2.1、列筛选

查看excel实现

  

POI代码  

  1. Sheet sheetCreat = wbCreat.createSheet(sheet.getSheetName());
  2. CellRangeAddress c = CellRangeAddress.valueOf(CELL_RANGE_ADDRESS);
  3. sheetCreat.setAutoFilter(c);

002-poi-excel-导出设置单元格数据校验规则、筛选功能的更多相关文章

  1. [转载]Java读取Excel中的单元格数据

    目前网上能找到的读取Excel表格中数据的两种比较好的方案:PageOffice好用开发效率高:POI免费.供大家参考,针对具体情况选择具体方案. 1. PageOffice读取excel impor ...

  2. jqgrid设置单元格数据

    $("#gridid").jqGrid('setCell',rowid,icol,data); rowid为行ID,jqgrid内置的那个,从1开始 icol为列索引,从0开始, ...

  3. .Net 导出Excel时设置单元格的格式为文本类型

    <td style= 'vnd.ms-excel.numberformat:@ ' align='right'>" & Format(Val(rowTitle.Item( ...

  4. 【手记】解决excel无法设置单元格颜色且界面怪异+桌面图标文字老有色块等问题

    注:问题是在XP上遇到的,不知道是否适用其它系统 问题现象 excel 2010成这样了: 关键是设置不了单元格颜色,无论是文字颜色还是背景色都设置不了,设了没变化.同时会发现桌面图标的文字总有底色: ...

  5. Excel公式设置单元格颜色

    Excel2010 “条件格式"-"新建规则"-"使用公式确定要设置格式的单元格" 公式如下: =OR(H2<=-20%,H2>=20%, ...

  6. java 使用poi导出Excel,设置单元格保护不可编辑

    //sheet表加密:等效excel的审阅菜单下的保护工作表 sheet.protectSheet(new String("333"));//333是密码 更多设置请参考:http ...

  7. thinkphp3.2.3集成phpexcel1.8导出设置单元格合并

    1 到这里下载classes里面的文件 https://github.com/PHPOffice/PHPExcel 2 然后放到 thinkphp的vendor 新建一个文件夹 Phpexcel  然 ...

  8. asp.net+nopi生成Excel遇到设置单元格值null问题

    Npoi 生成excel报表功能很不错,功能也不用给大家介绍了.首先看遇到的问题吧! FileStream file = new FileStream(Server.MapPath("Tem ...

  9. C#导出Excel按照指定格式设置单元格属性值

    最近项目中一直在写XML.Table.Excel之间的转化.之前一直都是不考虑格式的导出,今天给出一个格式,让按照格式导出,还真把我这新手为难了一翻,网上给出的资料基本一样.为了一个单元格文字变色纠结 ...

随机推荐

  1. Django :中间 件与csrf

    一.中间件 什么是中间件 中间件有什么用 自定义中间件 中间件应用场景 二.csrf csrf token跨站请求伪造 一.中间件 1.什么是中间件 中间件顾名思义,是介于request与respon ...

  2. Shell脚本字符串匹配及日常命令工具 - 用法总结(技巧指南)

    Shell提供了很多字符串和文件处理的命令,如awk.expr.grep.sed等命令,还有文件的排序.合并和分割等一系列的操作命令.下面重点总结下Shell字符串处理.文本处理以及各类命令及函数用法 ...

  3. Crossover 19(Mac运行Windows应用程序)

    怎样才能在Mac上运行Windows应用程序?相信这是很多朋友都在问的问题,今天macdown(mac软件平台)小编为大家带来Crossover 19 Mac版下载,Crossover 19 mac版 ...

  4. 05-Docker私有仓库

    一.介绍私有仓库顾名思义,如果我们不想把docker镜像公开放到公有仓库中,只想在部门或团队内部共享docker镜像,这时私有仓库就来了. 二.私有仓库搭建与配置1.拉取私有仓库镜像,这里说明一下,私 ...

  5. Oracle递归查询connect by

    一.概述 Oracle中可以通过START WITH . . . CONNECT BY . . .子句来实现SQL的层次查询. 自从Oracle 9i开始,可以通过 SYS_CONNECT_BY_PA ...

  6. unittest----assert断言的使用

    unittest的官发文档链接:https://docs.python.org/2.7/library/unittest.html#unittest.TestCase 先介绍下unittest的基本使 ...

  7. TensorFlow(十一):递归神经网络(RNN与LSTM)

    RNN RNN(Recurrent Neural Networks,循环神经网络)不仅会学习当前时刻的信息,也会依赖之前的序列信息.由于其特殊的网络模型结构解决了信息保存的问题.所以RNN对处理时间序 ...

  8. filter方法求出列表所有奇数并构造新列

    a = [, , , , , , , , , ] b = filter(lambda x: x % != , a) for i in b: print(i)

  9. ftp连接

    package enterprise.celerity.ac.util; import java.io.IOException;import java.io.InputStream;import ja ...

  10. python3编程基础之一:操作

    基本操作有:读数据.写数据.运算.控制.输入.输出.语句块 1.读取数据: num1 = 50 num2 = num1 //通过num2取得num1的值,这就是逻辑上的读取 测试数据:print(nu ...