POI操作Excel2003 和 Excel2007
程序员文章站
2022-07-13 12:43:27
...
/**
* 将Excel表格转换成TXT文档
* @author wb-quesj
* @version 1.0
*/
public class ExcelReader {
// 创建文件输入流
private BufferedReader reader = null;
// 文件类型
private String filetype;
// 文件二进制输入流
private InputStream is = null;
// 当前的Sheet
private int currSheet;
// 当前位置
private int currPosition;
// Sheet数量
private int numOfSheets;
// HSSFWorkbook
HSSFWorkbook workbook = null;
// 设置Cell之间以空格分割
private static String EXCEL_LINE_DELIMITER = ",";
// 设置最大列数
private static int MAX_EXCEL_COLUMNS = 64;
// 设置时间格式
private final static DateFormat DATE_FORMAT = new SimpleDateFormat("yyyyMMdd hhmmss");
// 构造函数创建一个ExcelReader
public ExcelReader(FileItem item) throws IOException, Exception {
String inputfile = item.getName();
// 判断参数是否为空或没有意义
if (inputfile == null || inputfile.trim().equals("")) {
throw new IOException("no input file specified");
}
// 取得文件名的后缀名赋值给filetype
this.filetype = inputfile.substring(inputfile.lastIndexOf(".") + 1);
// 设置开始行为0
currPosition = 0;
// 设置当前位置为0
currSheet = 0;
// 创建文件输入流
is = item.getInputStream();
// 判断文件格式
if (filetype.equalsIgnoreCase("xls")||filetype.equalsIgnoreCase("xlsx")) {
// 如果是Excel文件则创建HSSFWorkbook读取
workbook = new HSSFWorkbook(is);
// 设置Sheet数
numOfSheets = workbook.getNumberOfSheets();
} else {
throw new Exception("File Type Not Supported");
}
}
// 函数readLine读取文件的一行
public String readLine() throws IOException {
// 如果是XLS文件则通过POI提供的API读取文件
if (filetype.equalsIgnoreCase("xls")) {
// 根据currSheet值获得当前的sheet
HSSFSheet sheet = workbook.getSheetAt(currSheet);
// 判断当前行是否到但前Sheet的结尾
// System.out.println(sheet.getLastRowNum());
if (currPosition > sheet.getLastRowNum()) {
// 当前行位置清零
currPosition = 0;
// 判断是否还有Sheet
if (currSheet != numOfSheets - 1) {
currSheet++;
// 得到下一张Sheet
sheet = workbook.getSheetAt(currSheet);
} else {
return null;
}
}
// 获取当前行数
int row = currPosition;
currPosition++;
// 读取当前行数据
return getLine(sheet, row);
}
return null;
}
// 函数getLine返回Sheet的一行数据
private String getLine(HSSFSheet sheet, int row) {
// 根据行数取得Sheet的一行
HSSFRow rowline = sheet.getRow(row);
// 创建字符创缓冲区
StringBuffer buffer = new StringBuffer();
// 获取当前行的列数
int filledColumns;
try {
filledColumns = rowline.getLastCellNum();
} catch (NullPointerException e) {
return null;
}
HSSFCell cell = null;
// 循环遍历所有列
for (int i = 0; i < filledColumns; i++) {
// 取得当前Cell
cell = rowline.getCell((short) i);
String cellvalue = null;
if (cell != null) {
// 判断当前Cell的Type
switch (cell.getCellType()) {
// 如果当前Cell的Type为NUMERIC
case HSSFCell.CELL_TYPE_NUMERIC: {
// 判断当前的cell是否为Date
if (HSSFDateUtil.isCellDateFormatted(cell)) {
// 如果是Date类型则,取得该Cell的Date值
Date date = cell.getDateCellValue();
// 把Date转换成本地格式的字符串
cellvalue = DATE_FORMAT.format(date);
}
// 如果是纯数字
else {
// 取得当前Cell的数值
Integer num = new Integer((int) cell
.getNumericCellValue());
cellvalue = String.valueOf(num);
}
break;
}
// 如果当前Cell的Type为STRIN
case HSSFCell.CELL_TYPE_STRING:
// 取得当前的Cell字符串
cellvalue = cell.getRichStringCellValue().toString()
.replaceAll("'", "''");
break;
// 默认的Cell值
default:
cellvalue = "";
}
} else {
cellvalue = "";
}
// 在每个字段之间插入分割符
if (!"".equals(cellvalue) && cellvalue.trim() != null) {
buffer.append(cellvalue).append(EXCEL_LINE_DELIMITER);
}
}
// 以字符串返回该行的数据
return buffer.toString();
}
// close函数执行流的关闭操作
public void close() {
// 如果is不为空,则关闭InputSteam文件输入流
if (is != null) {
try {
is.close();
} catch (IOException e) {
is = null;
}
}
// 如果reader不为空则关闭BufferedReader文件输入流
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
reader = null;
}
}
}
}
public class XSSFExcelReader {
// 创建文件输入流
private BufferedReader reader = null;
// 文件类型
private String filetype;
// 文件二进制输入流
private InputStream is = null;
// 当前的Sheet
private int currSheet;
// 当前位置
private int currPosition;
// Sheet数量
private int numOfSheets;
// XSSFWorkbook
XSSFWorkbook workbook = null;
// 设置Cell之间以空格分割
private static String EXCEL_LINE_DELIMITER = ",";
// 设置最大列数
private static int MAX_EXCEL_COLUMNS = 64;
// 设置时间格式
private final static DateFormat DATE_FORMAT = new SimpleDateFormat("yyyyMMdd hhmmss");
// 构造函数创建一个ExcelReader
public XSSFExcelReader(String inputfile) throws IOException, Exception {
// 判断参数是否为空或没有意义
if (inputfile == null || inputfile.trim().equals("")) {
throw new IOException("no input file specified");
}
// 取得文件名的后缀名赋值给filetype
this.filetype = inputfile.substring(inputfile.lastIndexOf(".") + 1);
// 设置开始行为0
currPosition = 0;
// 设置当前位置为0
currSheet = 0;
// 创建文件输入流
is = new FileInputStream(inputfile);
// 判断文件格式
if (filetype.equalsIgnoreCase("xlsx")
|| filetype.equalsIgnoreCase("xlsxx")) {
// 如果是Excel文件则创建HSSFWorkbook读取
workbook = new XSSFWorkbook(is);
// 设置Sheet数
numOfSheets = workbook.getNumberOfSheets();
} else {
throw new Exception("File Type Not Supported");
}
}
// 函数readLine读取文件的一行
public String readLine() throws IOException {
// 如果是XLS文件则通过POI提供的API读取文件
if (filetype.equalsIgnoreCase("xlsx")) {
// 根据currSheet值获得当前的sheet
XSSFSheet sheet = workbook.getSheetAt(currSheet);
// 判断当前行是否到但前Sheet的结尾
// System.out.println(sheet.getLastRowNum());
if (currPosition > sheet.getLastRowNum()) {
// 当前行位置清零
currPosition = 0;
// 判断是否还有Sheet
if (currSheet != numOfSheets - 1) {
currSheet++;
// 得到下一张Sheet
sheet = workbook.getSheetAt(currSheet);
} else {
return null;
}
}
// 获取当前行数
int row = currPosition;
currPosition++;
// 读取当前行数据
return getLine(sheet, row);
}
return null;
}
// 函数getLine返回Sheet的一行数据
private String getLine(XSSFSheet sheet, int row) {
// 根据行数取得Sheet的一行
XSSFRow rowline = sheet.getRow(row);
// 创建字符创缓冲区
StringBuffer buffer = new StringBuffer();
// 获取当前行的列数
int filledColumns;
try {
filledColumns = rowline.getLastCellNum();
} catch (NullPointerException e) {
return null;
}
XSSFCell cell = null;
// 循环遍历所有列
for (int i = 0; i < filledColumns; i++) {
// 取得当前Cell
cell = rowline.getCell((short) i);
String cellvalue = null;
if (cell != null) {
// 判断当前Cell的Type
switch (cell.getCellType()) {
// 如果当前Cell的Type为NUMERIC
case XSSFCell.CELL_TYPE_NUMERIC: {
// 判断当前的cell是否为Date
XSSFCellStyle style = cell.getCellStyle();
int t = style.getDataFormat();
if (isInternalDateFormat(t)) {
// 如果是Date类型则,取得该Cell的Date值
Date date = cell.getDateCellValue();
// 把Date转换成本地格式的字符串
cellvalue = DATE_FORMAT.format(date);
}
// 如果是纯数字
else {
// 取得当前Cell的数值
Integer num = new Integer((int) cell
.getNumericCellValue());
cellvalue = String.valueOf(num);
}
break;
}
// 如果当前Cell的Type为STRIN
case XSSFCell.CELL_TYPE_STRING:
// 取得当前的Cell字符串
cellvalue = cell.getRichStringCellValue().toString()
.replaceAll("'", "''");
break;
// 默认的Cell值
default:
cellvalue = "";
}
} else {
cellvalue = "";
}
// 在每个字段之间插入分割符
if (!"".equals(cellvalue) && cellvalue.trim() != null) {
buffer.append(cellvalue).append(EXCEL_LINE_DELIMITER);
}
}
// 以字符串返回该行的数据
return buffer.toString();
}
/**
* given a format ID this will check whether the format represents an
* internal date format or not.
*/
public boolean isInternalDateFormat(int format) {
boolean retval = false;
switch (format) {
// Internal Date Formats as described on page 427 in
// Microsoft Excel Dev's Kit...
case 0x0e:
case 0x0f:
case 0x10:
case 0x11:
case 0x12:
case 0x13:
case 0x14:
case 0x15:
case 0x16:
case 0x2d:
case 0x2e:
case 0x2f:
retval = true;
break;
default:
retval = false;
break;
}
return retval;
}
// close函数执行流的关闭操作
public void close() {
// 如果is不为空,则关闭InputSteam文件输入流
if (is != null) {
try {
is.close();
} catch (IOException e) {
is = null;
}
}
// 如果reader不为空则关闭BufferedReader文件输入流
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
reader = null;
}
}
}
}
使用范例
ExcelReader er = new ExcelReader(item);
String line = er.readLine();
while (line != null) {
count++;
sb.append(line).append('\n');
line = er.readLine();
}
er.close();
上一篇: poi excel
下一篇: poi 设置excel 单元格样式
推荐阅读
-
C#连接Excel2003和Excel2007以上版本做数据库的连接字符串
-
C#连接Excel2003和Excel2007以上版本做数据库的连接字符串
-
使用POI同时对Excel文件进行读和写操作时避免Invalid header signatu
-
Java读取Excel数据内容,兼容excel2003和excel2007版本/xls后缀,xlsx后缀
-
采用POI实现大数据量EXCEL2007的数据解析和导入
-
POI xlsx和xls 文件操作
-
关于 HSSF 和 XSSF 功能的开发者入门指南 (Apache POI 操作 Excel)
-
POI操作Excel详解,HSSF和XSSF两种方式
-
Java 操作 Excel (读取Excel2003 2007,Poi实现)
-
poi处理excel2007和处理excel2003文件