java使用org.apache.poi读取与保存EXCEL文件

 

一、读EXCEL文件

  1 package com.ruijie.wis.cloud.utils;
  2 
  3 import java.io.FileInputStream;
  4 import java.io.FileNotFoundException;
  5 import java.io.IOException;
  6 import java.io.InputStream;
  7 import java.text.DecimalFormat;
  8 import java.util.ArrayList;
  9 import java.util.HashMap;
 10 import java.util.Iterator;
 11 import java.util.List;
 12 import java.util.Map;
 13 
 14 import org.apache.poi.hssf.usermodel.HSSFCell;
 15 import org.apache.poi.ss.usermodel.Cell;
 16 import org.apache.poi.ss.usermodel.CellValue;
 17 import org.apache.poi.ss.usermodel.FormulaEvaluator;
 18 import org.apache.poi.ss.usermodel.Row;
 19 import org.apache.poi.xssf.usermodel.XSSFCell;
 20 import org.apache.poi.xssf.usermodel.XSSFCellStyle;
 21 import org.apache.poi.xssf.usermodel.XSSFFont;
 22 import org.apache.poi.xssf.usermodel.XSSFRow;
 23 import org.apache.poi.xssf.usermodel.XSSFSheet;
 24 import org.apache.poi.xssf.usermodel.XSSFWorkbook;
 25 import org.slf4j.Logger;
 26 import org.slf4j.LoggerFactory;
 27 
 28 public class ProjectImportUtil {
 29 public ProjectImportUtil() {
 30     String fileName = "D:\tst.xlsx";
 31   InputStream input = new FileInputStream(fileName);     
 32 }
 33 
 34 /* 导入销售数据 ,excel2007格式 */
 35 public List<Map<String,Object>> importSaleXml(InputStream input, String industry) { 
 36 List<Map<String,Object>> result = new ArrayList<Map<String,Object>>();
 37 DecimalFormat df =new DecimalFormat("#0");
 38 
 39 try { 
 40 XSSFWorkbook wb = new XSSFWorkbook(input); // Excel 2003 使用wb = new HSSFWorkbook(input);

41 FormulaEvaluator evaluator = wb.getCreationHelper().createFormulaEvaluator();
 42 int index_name = 0;
 43 int index_province = 0;
 44 int index_city = 0;
 45 int index_acs = 0;
 46 int index_aps = 0;
 47 int index_zuozhi = 0;
 48 String industry_name = industry;
 49 XSSFSheet sheet = wb.getSheet(industry_name);
 50 if(sheet == null) {
 51 logger.warn("importSaleXml - industy: " + industry_name + " not exist!");
 52 wb.close();
 53 return null;
 54 }
 55 Iterator<Row> rows = sheet.rowIterator();
 56 
 57 while (rows.hasNext()) { 
 58   Row row = rows.next();
 59   if(row.getRowNum() == 0) { // 查找关心的数据所在列号
 60   Iterator<Cell> cells = row.cellIterator(); 
 61   while (cells.hasNext()) { 
 62     Cell cell = cells.next();
 63     String title = getCellValue(cell,evaluator);
 64     if(title.equals("最终客户名称")) {
 65       index_name = cell.getColumnIndex();
 66     } else if(title.equals("省份")) {
 67       index_province = cell.getColumnIndex();
 68     } else if(title.equals("城市")) {
 69       index_city = cell.getColumnIndex();
 70     } else if(title.equals("AC系列")) {
 71       index_acs = cell.getColumnIndex();
 72     } else if(title.equals("AP系列")) {
 73       index_aps = cell.getColumnIndex();
 74     } else if(title.equals("卓智客户名称")) {
 75       index_zuozhi = cell.getColumnIndex();
 76   }
 77   }    
 78 }
 79 
 80   Cell cell_name = row.getCell(index_name);
 81   Cell cell_province = row.getCell(index_province);
 82   Cell cell_city = row.getCell(index_city);
 83   Cell cell_acs = row.getCell(index_acs);
 84   Cell cell_aps = row.getCell(index_aps);
 85   String projectName = getCellValue(cell_name,evaluator);
 86   String province = getCellValue(cell_province,evaluator);
 87   String city = getCellValue(cell_city,evaluator);
 88   String acs = getCellValue(cell_acs,evaluator);
 89   String aps = getCellValue(cell_aps,evaluator);
 90 
 91   Map<String,Object> salevalue = new HashMap<String, Object>();
 92   salevalue.put("projectName", projectName);
 93   salevalue.put("industry_name", industry_name);
 94   if(province != null) {  
 95     salevalue.put("province", province);
 96   }
 97   if(city != null) {
 98     salevalue.put("city", city);
 99   }
100   if(acs != null) {  
101     salevalue.put("acs", acs);
102   }    
103   if(aps != null) {
104     salevalue.put("aps", aps);
105 
106   }
107 
108   result.add(salevalue);
109 }
110   wb.close(); 
111 } catch (Exception e) {    
112   logger.error(e.toString(),e);
113 }    
114   return result;
115 } 
116 
117 //根据cell中的类型来返回数据 
118 public String getCellValue(Cell cell, FormulaEvaluator evaluator) {    
119   if(cell == null) {
120     return null;
121   }
122   CellValue cellValue = evaluator.evaluate(cell);
123   if(cellValue == null) {
124     return null;
125   }
126   switch (cellValue.getCellType()) { 
127   case HSSFCell.CELL_TYPE_NUMERIC: 
128   return cell.getNumericCellValue() + ""; 
129   case HSSFCell.CELL_TYPE_STRING: 
130   return cell.getStringCellValue() + "";
131   case HSSFCell.CELL_TYPE_BOOLEAN: 
132   return cell.getBooleanCellValue() + ""; 
133   case HSSFCell.CELL_TYPE_FORMULA: 
134   return cell.getCellFormula(); 
135   default: 
136   return null; 
137 }    
138 }
139 
140 }

 

二、写EXCEL文件

  1 XSSFWorkbook wb=new XSSFWorkbook();
  2 DeviceAlarmUtil outputResult = new DeviceAlarmUtil();
  3 wb = outputResult.outConfigExceptionResult(wb, "配置告警信息", configAlarmList);
  4 response.setContentType("application/msexcel");
  5 response.setHeader( "Content-Disposition", "attachment;filename=" + new String(fileName.getBytes("utf-8"), "ISO8859-1" ) ); 
  6            
  7 ServletOutputStream os = null;
  8 try {
  9     os = response.getOutputStream();
 10     //写到输出流
 11      wb.write(os);
 12 } catch (FileNotFoundException e) {
 13      e.printStackTrace();
 14 } catch (IOException e) {
 15      e.printStackTrace();
 16 } catch (Throwable e) {
 17      e.printStackTrace();
 18 } finally {
 19      if (wb != null) {
 20          try {
 21              wb.close();
 22          } catch (IOException e) {
 23              throw new Exception("IO错误,无法导出结果");
 24          }
 25      }
 26      if (os != null) {
 27          try {
 28            os.flush();
 29             os.close();
 30          } catch (IOException e) {
 31             throw new Exception("IO错误,无法导出结果");
 32          }
 33      }
 34 }
 35 
 36 
 37 public XSSFWorkbook outConfigExceptionResult(XSSFWorkbook wb, String sheetName, List<Map<String, Object>> sheetResult){
 38         XSSFSheet sheet=wb.createSheet(sheetName);
 39         XSSFRow row=sheet.createRow(0);
 40         CellStyle cellStyle =wb.createCellStyle(); 
 41         // 设置这些样式 
 42         cellStyle.setAlignment(XSSFCellStyle.ALIGN_CENTER); 
 43         cellStyle.setFillForegroundColor(HSSFColor.LIGHT_ORANGE.index);
 44         cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
 45         cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); 
 46         cellStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN); 
 47         cellStyle.setBorderRight(HSSFCellStyle.BORDER_THIN); 
 48         cellStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);
 49         XSSFFont font = wb.createFont();
 50         font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
 51         cellStyle.setFont(font);
 52         
 53         XSSFCell cell = row.createCell((short) 0);
 54         cell.setCellValue("客户名称"); 
 55         cell.setCellStyle(cellStyle);
 56         sheet.setColumnWidth(0, 5500);
 57         cell = row.createCell((short) 1);
 58         cell.setCellValue("AC MAC"); 
 59         cell.setCellStyle(cellStyle);
 60         sheet.setColumnWidth(1, 5000);
 61         cell = row.createCell((short) 2);
 62         cell.setCellValue("检查项"); 
 63         cell.setCellStyle(cellStyle);
 64         sheet.setColumnWidth(2, 5000);
 65         cell = row.createCell((short) 3);
 66         cell.setCellValue("检查次数");
 67         cell.setCellStyle(cellStyle);
 68         sheet.setColumnWidth(3, 5000);
 69         cell = row.createCell((short) 4);
 70         cell.setCellValue("检查时间");
 71         cell.setCellStyle(cellStyle);
 72         sheet.setColumnWidth(4, 5000);
 73         cell = row.createCell((short) 5);
 74         cell.setCellValue("记录更新时间");
 75         cell.setCellStyle(cellStyle);
 76         sheet.setColumnWidth(5, 5000);        
 77         cell = row.createCell((short) 6);        
 78         cell.setCellValue("当前状态");
 79         cell.setCellStyle(cellStyle);
 80         sheet.setColumnWidth(6, 4000);
 81         cell = row.createCell((short) 7);
 82         cell.setCellValue("异常等级");
 83         cell.setCellStyle(cellStyle);
 84         sheet.setColumnWidth(7, 4000);
 85         cell = row.createCell((short) 8);
 86         
 87         wb.setSheetName(0, sheetName);        
 88         if(sheetResult.size() == 0){
 89             XSSFRow rows=sheet.createRow(1);
 90             rows.setHeight((short) 500);
 91             rows.createCell(0).setCellValue("没有查询结果!");
 92             return wb;
 93         }
 94         
 95         for(int info = 0; info < sheetResult.size(); info ++){
 96             XSSFRow rows=sheet.createRow(info+1);
 97             rows.setHeight((short) 500);
 98             Map<String,Object> map = sheetResult.get(info);
 99             
100             rows.createCell(0).setCellValue(map.get("name") + "");
101             rows.createCell(1).setCellValue(map.get("ac_mac") + "");
102             rows.createCell(2).setCellValue(map.get("item_code") + "");            
103             rows.createCell(3).setCellValue(map.get("check_times") + "");
104             rows.createCell(4).setCellValue(map.get("check_time") + "");
105             rows.createCell(5).setCellValue(map.get("update_time") + "");
106             rows.createCell(6).setCellValue(map.get("status") + "");
107             rows.createCell(7).setCellValue(map.get("exception_level") + "");               
108             //多插一行,避免单元格溢出
109             rows.createCell(8).setCellValue(" ");
110         }
111         
112         return wb;
113     }

 

转载于:https://www.cnblogs.com/ypf1989/p/5404244.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/373213.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

oracle 指定格式化,Oracle中的格式化函数

格式化函数提供一套有效的工具用于把各种数据类型(日期/时间&#xff0c;int&#xff0c;float&#xff0c;numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成原始的数据类型。表 5-6. 格式化函数函数返回描述例子to_char(datetime, text)text把datetime 转换成 s…

弹性数组

看这个结构体的定义&#xff1a;typedef struct st_type{ int nCnt; int item[0];}type_a;&#xff08;有些编译器会报错无法编译可以改成&#xff1a;&#xff09;typedef struct st_type{ int nCnt; int item[];}type_a; 这样我们就可以定义一个可变长的结…

什么是Akka?

在深入研究什么是Akka之前&#xff0c;让我们退后一步来了解并发编程的概念在应用程序开发世界中是如何演变的。 应用程序已经从大型的整体程序演变为面向对象的模型。 随着Java EE和Spring框架的出现&#xff0c;应用程序设计演变为更多的基于流程或任务的设计模型。 EJB或Poj…

apache2服务器搭建心得

网站的配置文件在/etc/apache2/sites-avalible中&#xff0c;每个文件对应一个虚拟站点&#xff0c;但需要在/etc/apache2/sites-enabled中创建软链接到sites-avalible中对应的文件。 起初我在sites-avalible中创建了两个站点&#xff0c;一个netaddi.com&#xff0c;一个test.…

has_a php,PHP has encountered a Stack overflow问题解决方法

昨晚将一个disucz论坛进行转移后&#xff0c;发现打开的页面上回多一个PHP has encountered a Stack overflow 这个提示错误&#xff0c;进过翻译为“PHP遇到堆栈溢出”。我就感觉奇怪了&#xff0c;新站没人访问的&#xff0c;怎么可能会溢出。 好吧去discuz官方论坛找找解决方…

解决ueditor jquery javascript 取值问题

代码如下: var content UE.getEditor(myEditor).getContent();myEditor是ueditor 的名称name。代码如下: <textarea name"myEditor" id"myEditor"></textarea><script type"text/javascript">var editor new UE.ui.Editor()…

异常处理准则和最佳实践

让我们回顾一些从对象设计总结的基本异常设计准则&#xff1a;角色&#xff0c;职责和协作&#xff08;Rebecca Wirfs-Brock和Alan McKean&#xff0c;Addison-Wesley&#xff0c;2003年&#xff09;。 不要尝试处理编码错误。 除非在错误情况下要求您的软件采取特殊措施&…

HDU 5225 枚举

题目链接&#xff1a; hdu:http://acm.hdu.edu.cn/showproblem.php?pid5225 bc(中文):http://bestcoder.hdu.edu.cn/contests/contest_chineseproblem.php?cid580&pid1002 题解&#xff1a; 数组a保存输入 考虑当前位i&#xff0c;对于1<j<i&#xff0c;使得x[j]a[…

河南上oracle客户,解决Oracle监听服务报错

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼如果只是本机的访问 sqlplus system/manager这样是没有问题的。但是如果使用 sqlplus system/managerorcl的时候却会报ora-12514的错误。解决方法&#xff1a;1. 打开D:\oracle\product\10.2.0\db_1/network/admin/listener.ora文件…

【BZOJ2073】[POI2004]PRZ 状压DP

【BZOJ2073】[POI2004]PRZ Description 一只队伍在爬山时碰到了雪崩,他们在逃跑时遇到了一座桥,他们要尽快的过桥. 桥已经很旧了, 所以它不能承受太重的东西. 任何时候队伍在桥上的人都不能超过一定的限制. 所以这只队伍过桥时只能分批过,当一组全部过去时,下一组才能接着过. 队…

运行时vs编译时类路径

这确实应该是一个简单的区别&#xff0c;但是我一直在回答有关Stackoverflow的许多类似问题&#xff0c;并且经常有人误解此事。 那么&#xff0c;什么是类路径&#xff1f; 应用程序所需的一组所有类&#xff08;以及带有类的jar&#xff09;的集合。 但是有两个或实际上三个不…

Unity3d 实现顶点动画

在今年GDC上发现一个非常有趣的演讲&#xff0c;叫做Animating With Math&#xff0c;遂实现之&#xff0c;是讲述顶点shader动画的&#xff0c;举了几个经典的例子&#xff0c;但是讲者并没有给代码&#xff0c;而是像虚幻引擎那样的节点&#xff0c;这样更加清楚明了之前博主…

php codeigniter ext,php – 私有服务器上CodeIgniter不正确的系统路径

上传到服务器的codeigniter项目给我以下错误.Your system folder path does not appear to be set correctly. Pleaseopen the following file and correct this: index.php它在当地运作良好在000webhost.com托管.When uploaded to private server of parallels it gives the a…

对于表单的一些想法

表单 <form id"" name"" method"get/post" action""> 其中get提交长度有限制&#xff0c;并且编码后内容在地址栏可见&#xff0c;post与其相反。 </form> 文本输入 文本框<input type"text" id""…

REST端点,可使用Apache Camel进行集成

REST是一种用于组织资源的体系结构样式&#xff0c;当应用于基于HTTP的服务时&#xff0c;REST可以构建无状态的&#xff0c;解耦的&#xff0c;可伸缩的服务。 HTTP方法&#xff0c;HTTP标头和mime类型都允许开发人员实现REST样式。 诸如Jersey和Fuse Services Framework&…

Appium+Python API相关知识了解

首先&#xff0c;要先了解&#xff0c;官方Appium API // https://testerhome.com/topics/3144 刚开始的时候&#xff0c;没有看官方API&#xff0c;然后在网上瞎找学习资料&#xff0c;发现python相关的很少&#xff0c;看了API才知道&#xff0c;就是selenium webdriver的定位…

JSON用于多态Java对象序列化

长期以来&#xff0c;JSON已成为客户端和服务器之间各种数据序列化的事实上的标准。 除其他外&#xff0c;它的优势是简单和易于阅读。 但是&#xff0c;简单起了一些限制&#xff0c;我今天要谈的其中一个限制是&#xff1a;存储和检索多态Java对象。 让我们从一个简单的问题开…

linux 命令分类,常用linux 命令分类整理(篇一)

工作中接触linux时间也不算短了&#xff0c;不同于Windows的图形化操作&#xff0c;使用linux几乎百分之九十五的情况是在命令行下过日子&#xff0c;过去的两年里&#xff0c;零零碎碎整理过一版自己工作中涉及到和学习过的命令(不过常用的只有三十个左右)&#xff0c;思前想后…

考研复习策略

考研复习是一个不容易的过程&#xff0c;有好的策略事半功倍&#xff0c;以我曾经失败的教训和成功的实践给出了我认为不错的策略&#xff0c;只要能做到&#xff0c;我相信一定能考研成功。 院校选择&#xff1a;985院校在选择考研院校是有优势的&#xff0c;院校考虑的因素有…

js中的this指针(二)

在 js 中声明并定义一个函数后&#xff0c;除了定义时传入的形式参数&#xff0c;函数还会接收到 2 个附加的参数&#xff1a;this 和 arguments。 this 指针的值取决于调用时的模式。 当这个函数被保存为对象的一个属性时&#xff0c;它被称为“方法”。当一个方法被调用时&am…