java读写excel文件poi_java读写excel文件( POI解析Excel)

packagecom.zhx.base.utils;importorg.apache.poi.hssf.usermodel.HSSFWorkbook;import org.apache.poi.ss.usermodel.*;importorg.apache.poi.xssf.usermodel.XSSFWorkbook;importjava.io.FileInputStream;importjava.io.IOException;importjava.io.InputStream;importjava.util.ArrayList;importjava.util.List;/*** POI解析Excel*/

public classExcelReaderUtil {/*** 根据fileType不同读取excel文件

*

*@parampath

*@parampath

*@throwsIOException*/

public static List>readExcel(String path) {

String fileType= path.substring(path.lastIndexOf(".") + 1);//return a list contains many list

List> lists = new ArrayList>();//读取excel文件

InputStream is = null;try{

is= newFileInputStream(path);//获取工作薄

Workbook wb = null;if (fileType.equals("xls")) {

wb= newHSSFWorkbook(is);

}else if (fileType.equals("xlsx")) {

wb= newXSSFWorkbook(is);

}else{return null;

}//读取第一个工作页sheet

Sheet sheet = wb.getSheetAt(0);//第一行为标题

for(Row row : sheet) {

ArrayList list = new ArrayList();for(Cell cell : row) {//根据不同类型转化成字符串

cell.setCellType(Cell.CELL_TYPE_STRING);

list.add(cell.getStringCellValue());

}

lists.add(list);

}

}catch(IOException e) {

e.printStackTrace();

}finally{try{if (is != null) is.close();

}catch(IOException e) {

e.printStackTrace();

}

}returnlists;

}/*** 创建Excel.xls

*@paramlists 需要写入xls的数据

*@paramtitles 列标题

*@paramname 文件名

*@return*@throwsIOException*/

public static Workbook creatExcel(List> lists, String[] titles, String name) throwsIOException {

System.out.println(lists);//创建新的工作薄

Workbook wb = newHSSFWorkbook();//创建第一个sheet(页),并命名

Sheet sheet =wb.createSheet(name);//手动设置列宽。第一个参数表示要为第几列设;,第二个参数表示列的宽度,n为列高的像素数。

for(int i=0;i

sheet.setColumnWidth((short) i, (short) (35.7 * 150));

}//创建第一行

Row row = sheet.createRow((short) 0);//创建两种单元格格式

CellStyle cs =wb.createCellStyle();

CellStyle cs2=wb.createCellStyle();//创建两种字体

Font f =wb.createFont();

Font f2=wb.createFont();//创建第一种字体样式(用于列名)

f.setFontHeightInPoints((short) 10);

f.setColor(IndexedColors.BLACK.getIndex());

f.setBoldweight(Font.BOLDWEIGHT_BOLD);//创建第二种字体样式(用于值)

f2.setFontHeightInPoints((short) 10);

f2.setColor(IndexedColors.BLACK.getIndex());//设置第一种单元格的样式(用于列名)

cs.setFont(f);

cs.setBorderLeft(CellStyle.BORDER_THIN);

cs.setBorderRight(CellStyle.BORDER_THIN);

cs.setBorderTop(CellStyle.BORDER_THIN);

cs.setBorderBottom(CellStyle.BORDER_THIN);

cs.setAlignment(CellStyle.ALIGN_CENTER);//设置第二种单元格的样式(用于值)

cs2.setFont(f2);

cs2.setBorderLeft(CellStyle.BORDER_THIN);

cs2.setBorderRight(CellStyle.BORDER_THIN);

cs2.setBorderTop(CellStyle.BORDER_THIN);

cs2.setBorderBottom(CellStyle.BORDER_THIN);

cs2.setAlignment(CellStyle.ALIGN_CENTER);//设置列名

for(int i=0;i

Cell cell=row.createCell(i);

cell.setCellValue(titles[i]);

cell.setCellStyle(cs);

}if(lists == null || lists.size() == 0){returnwb;

}//设置每行每列的值

for (short i = 1; i <= lists.size(); i++) {//Row 行,Cell 方格 , Row 和 Cell 都是从0开始计数的//创建一行,在页sheet上

Row row1 = sheet.createRow((short)i);for(short j=0;j

Cell cell =row1.createCell(j);

cell.setCellValue(lists.get(i-1).get(j));

cell.setCellStyle(cs2);

}

}returnwb;

}public static voidmain(String[] args) {

String path= "d:/software/企发支付-员工信息表.xlsx";

List> lists =readExcel(path);for (Listlist : lists) {for(String strs : list) {

System.out.println(strs);

}

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值