poi实现导入导出
程序员文章站
2022-04-30 18:25:17
...
界面展示:
导出
导出.png
导入
导入.png
开发步骤:
1、首先导入poi.jar包(注意:我用的是3.8版本的jar包,其他版本的没试过应该也可以)
poi所需的jar包.png
2、在list.jsp列表显示界面添加两个按钮导入导出
<tr>
<td colspan="21">
<form action="<%=request.getContextPath()%>/person_listPerson"
method="post">
<input type="button" value="导出Excel表" id="btn6">
<input type="button" value="全选" id="btn1">
<input type="button" value="反选" id="btn3">
<input type="button" value="添加" id="add">
<input type="button" value="批量删除" id="btn4">
<input type="button" value="修改" id="update">
${group}
<input type="text" name="currentPage">
<input type="submit" value="前往">
</form>
<s:form action="person_importExcel" method="post" name="kk" enctype="multipart/form-data">
<s:file label="导入Excel" name="myfile" theme="simple" id="upload" />
<input type="button" value="导入Excel" id="btn7">
</s:form>
</td>
</tr>
点击按钮
<script type="text/javascript">
$(function() {
$("#btn6").click(function() {
location = "person_exportExcel";
});
$("#btn7").click(function() {
var aa = $("#upload").val();
if (aa != "") {
kk.submit();
} else {
alert("请选择Excel文件!");
}
});
});
</script>
导出我做了一个工具类ExportExcel
package com.baidu.utils;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFRichTextString;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.util.CellRangeAddress;
/**
* 导出Excel公共方法
*/
public class ExportExcel {
// 显示的导出表的标题
private String title;
// 导出表的列名
private String[] rowName;
private List<Object[]> dataList = new ArrayList<Object[]>();
HttpServletResponse response;
// 构造方法,传入要导出的数据
public ExportExcel(String title, String[] rowName, List<Object[]> dataList) {
this.dataList = dataList;
this.rowName = rowName;
this.title = title;
}
/*
* 导出数据
*/
public void export(OutputStream out) throws Exception {
try {
HSSFWorkbook workbook = new HSSFWorkbook(); // 创建工作簿对象
HSSFSheet sheet = workbook.createSheet(title); // 创建工作表
// 产生表格标题行
HSSFRow rowm = sheet.createRow(0);
HSSFCell cellTiltle = rowm.createCell(0);
// sheet样式定义【getColumnTopStyle()/getStyle()均为自定义方法 - 在下面 - 可扩展】
HSSFCellStyle columnTopStyle = this.getColumnTopStyle(workbook);// 获取列头样式对象
HSSFCellStyle style = this.getStyle(workbook); // 单元格样式对象
sheet.addMergedRegion(new CellRangeAddress(0, 1, 0,
(rowName.length - 1)));
cellTiltle.setCellStyle(columnTopStyle);
cellTiltle.setCellValue(title);
// 定义所需列数
int columnNum = rowName.length;
HSSFRow rowRowName = sheet.createRow(2); // 在索引2的位置创建行(最顶端的行开始的第二行)
// 将列头设置到sheet的单元格中
for (int n = 0; n < columnNum; n++) {
HSSFCell cellRowName = rowRowName.createCell(n); // 创建列头对应个数的单元格
cellRowName.setCellType(HSSFCell.CELL_TYPE_STRING); // 设置列头单元格的数据类型
HSSFRichTextString text = new HSSFRichTextString(rowName[n]);
cellRowName.setCellValue(text); // 设置列头单元格的值
cellRowName.setCellStyle(columnTopStyle); // 设置列头单元格样式
}
// 将查询出的数据设置到sheet对应的单元格中
for (int i = 0; i < dataList.size(); i++) {
Object[] obj = dataList.get(i);// 遍历每个对象
HSSFRow row = sheet.createRow(i + 3);// 创建所需的行数
for (int j = 0; j < obj.length; j++) {
HSSFCell cell = null; // 设置单元格的数据类型
if (j == 0) {
cell = row.createCell(j, HSSFCell.CELL_TYPE_NUMERIC);
cell.setCellValue(i + 1);
} else {
cell = row.createCell(j, HSSFCell.CELL_TYPE_STRING);
if (!"".equals(obj[j]) && obj[j] != null) {
cell.setCellValue(obj[j].toString()); // 设置单元格的值
}
}
cell.setCellStyle(style); // 设置单元格样式
}
}
// 让列宽随着导出的列长自动适应
for (int colNum = 0; colNum < columnNum; colNum++) {
int columnWidth = sheet.getColumnWidth(colNum) / 256;
for (int rowNum = 0; rowNum < sheet.getLastRowNum(); rowNum++) {
HSSFRow currentRow;
// 当前行未被使用过
if (sheet.getRow(rowNum) == null) {
currentRow = sheet.createRow(rowNum);
} else {
currentRow = sheet.getRow(rowNum);
}
if (currentRow.getCell(colNum) != null) {
HSSFCell currentCell = currentRow.getCell(colNum);
if (currentCell.getCellType() == HSSFCell.CELL_TYPE_STRING) {
int length = currentCell.getStringCellValue()
.getBytes().length;
if (columnWidth < length) {
columnWidth = length;
}
}
}
}
if (colNum == 0) {
sheet.setColumnWidth(colNum, (columnWidth - 2) * 256);
} else {
sheet.setColumnWidth(colNum, (columnWidth + 4) * 256);
}
}
workbook.write(out);
} catch (Exception e) {
e.printStackTrace();
}
}
/*
* 列头单元格样式
*/
public HSSFCellStyle getColumnTopStyle(HSSFWorkbook workbook) {
// 设置字体
HSSFFont font = workbook.createFont();
// 设置字体大小
font.setFontHeightInPoints((short) 11);
// 字体加粗
font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
// 设置字体名字
font.setFontName("Courier New");
// 设置样式;
HSSFCellStyle style = workbook.createCellStyle();
// 设置底边框;
style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
// 设置底边框颜色;
style.setBottomBorderColor(HSSFColor.BLACK.index);
// 设置左边框;
style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
// 设置左边框颜色;
style.setLeftBorderColor(HSSFColor.BLACK.index);
// 设置右边框;
style.setBorderRight(HSSFCellStyle.BORDER_THIN);
// 设置右边框颜色;
style.setRightBorderColor(HSSFColor.BLACK.index);
// 设置顶边框;
style.setBorderTop(HSSFCellStyle.BORDER_THIN);
// 设置顶边框颜色;
style.setTopBorderColor(HSSFColor.BLACK.index);
// 在样式用应用设置的字体;
style.setFont(font);
// 设置自动换行;
style.setWrapText(false);
// 设置水平对齐的样式为居中对齐;
style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
// 设置垂直对齐的样式为居中对齐;
style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
return style;
}
/*
* 列数据信息单元格样式
*/
public HSSFCellStyle getStyle(HSSFWorkbook workbook) {
// 设置字体
HSSFFont font = workbook.createFont();
// 设置字体大小
// font.setFontHeightInPoints((short)10);
// 字体加粗
// font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
// 设置字体名字
font.setFontName("Courier New");
// 设置样式;
HSSFCellStyle style = workbook.createCellStyle();
// 设置底边框;
style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
// 设置底边框颜色;
style.setBottomBorderColor(HSSFColor.BLACK.index);
// 设置左边框;
style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
// 设置左边框颜色;
style.setLeftBorderColor(HSSFColor.BLACK.index);
// 设置右边框;
style.setBorderRight(HSSFCellStyle.BORDER_THIN);
// 设置右边框颜色;
style.setRightBorderColor(HSSFColor.BLACK.index);
// 设置顶边框;
style.setBorderTop(HSSFCellStyle.BORDER_THIN);
// 设置顶边框颜色;
style.setTopBorderColor(HSSFColor.BLACK.index);
// 在样式用应用设置的字体;
style.setFont(font);
// 设置自动换行;
style.setWrapText(false);
// 设置水平对齐的样式为居中对齐;
style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
// 设置垂直对齐的样式为居中对齐;
style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
return style;
}
}
controller控制层 PersonAction类里面有导入导出的方法
//导出excel表
public String exportExcel() throws Exception {
// 初始化HttpServletResponse对象
HttpServletResponse response = ServletActionContext.getResponse();
// 定义表的标题
String title = "员工列表一览";
//定义表的列名
String[] rowsName = new String[] { "员工编号", "姓名", "性别", "特长", "学历",
"入职时间", "简历", "照片", "部门" };
//定义表的内容
List<Object[]> dataList = new ArrayList<Object[]>();
Object[] objs = null;
List<Person> listPerson = ps.listPerson();
for (int i = 0; i < listPerson.size(); i++) {
Person per = listPerson.get(i);
objs = new Object[rowsName.length];
objs[0] = per.getPid();
objs[1] = per.getPname();
objs[2] = per.getPsex();
objs[3] = per.getSkilled();
objs[4] = per.getDegree();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
String date = df.format(per.getJobtime());
objs[5] = date;
objs[6] = per.getResume();
objs[7] = per.getFilepath();
objs[8] = per.getDept().getDname();
dataList.add(objs);
}
// 创建ExportExcel对象
ExportExcel ex = new ExportExcel(title, rowsName, dataList);
// 输出Excel文件
try {
OutputStream output = response.getOutputStream();
response.reset();
response.setHeader("Content-disposition",
"attachment; filename="+new String("员工表".getBytes("gbk"), "iso8859-1")+".xls");
response.setContentType("application/msexcel");
response.setCharacterEncoding("utf-8");
ex.export(output);
output.close();
} catch (IOException e) {
e.printStackTrace();
}
return "tolist";// 返回列表显示
}
//导入excel表中的数据
public String importExcel() throws Exception {
// 初始化HttpServletRequest对象
HttpServletRequest request = ServletActionContext.getRequest();
// 获得文件名
String filename = getMyfileFileName();
// 上传文件到服务器中
filename = FileUpload2.upload(filename, myfile);
Person per = new Person();// 新建一个per对象
Dept dept = new Dept();// 新建一个dept对象
// 获取服务器中文件的路径
String path = request.getSession().getServletContext().getRealPath("")
+ "/upload/" + filename;
try {
InputStream is = new FileInputStream(path);//将路径转为输入流对象 输入流对象可以取出来读取
HSSFWorkbook hssfWorkbook = new HSSFWorkbook(is);//将输入流对象存到工作簿对象里面
// 循环工作表Sheet
for (int numSheet = 0; numSheet < hssfWorkbook.getNumberOfSheets(); numSheet++) {
HSSFSheet hssfSheet = hssfWorkbook.getSheetAt(numSheet);
if (hssfSheet == null) {
continue;
}
// 循环行Row
for (int rowNum = 3; rowNum <= hssfSheet.getLastRowNum(); rowNum++) {
HSSFRow hssfRow = hssfSheet.getRow(rowNum);
if (hssfRow == null) {
continue;
}
// 循环列Cell
// "姓名","密码","性别","爱好","简介","部门did"};
per.setPname(getValue(hssfRow.getCell(1)));
per.setPsex(getValue(hssfRow.getCell(2)));
per.setSkilled(getValue(hssfRow.getCell(3)));
per.setDegree(getValue(hssfRow.getCell(4)));
String value = getValue(hssfRow.getCell(5));
SimpleDateFormat da=new SimpleDateFormat("yyyy-MM-dd");
Date parse = da.parse(value);
per.setJobtime(parse);
per.setResume(getValue(hssfRow.getCell(6)));
per.setFilepath(getValue(hssfRow.getCell(7)));
//这里很重要,通过部门列表然后与excel中的部门字段进行对比,匹配后获取对应的did
String dname = getValue(hssfRow.getCell(8));//获取excel中的部门字段
list=ds.list();//得到数据库中的部门列表
for (Dept dd : list) {//增强for循环
if (dd.getDname().equals(dname)) {//如果两者匹配
dept.setDid(dd.getDid());//则得到对应的did,并设置dept对象的did
per.setDept(dept);//再把dept对象设置到user对象中
}
}
ps.add(per);//写入到数据中
}
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return "tolist";//返回列表显示
}
/**
* 得到Excel表中的值
*
* @param hssfCell
* Excel中的每一个格子
* @return Excel中每一个格子中的值
*/
@SuppressWarnings("static-access")
private static String getValue(HSSFCell hssfCell) {
if (hssfCell.getCellType() == hssfCell.CELL_TYPE_BOOLEAN) {
// 返回布尔类型的值
return String.valueOf(hssfCell.getBooleanCellValue());
} else if (hssfCell.getCellType() == hssfCell.CELL_TYPE_NUMERIC) {
// 返回数值类型的值
return String.valueOf(hssfCell.getNumericCellValue());
} else {
// 返回字符串类型的值
return String.valueOf(hssfCell.getStringCellValue());
}
}
按如下步骤操作可以解决表命名中文乱码的问题
表命名可以用中文.png