java导入 ImportExcel

package com.shili.util;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.text.DecimalFormat;
import java.util.ArrayList;
import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ImportExcel{
/*
 <!--poi-->
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>3.8</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>3.8</version>
        </dependency>
        <dependency>
            <groupId>org.apache.xmlbeans</groupId>
            <artifactId>xmlbeans</artifactId>
            <version>2.3.0</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-scratchpad</artifactId>
            <version>3.8</version>
        </dependency>
*/
	/** 总行数 */
	private int totalRows = 0;
	/** 总列数 */
	private int totalCells = 0;
	/** 错误信息 */
	private String errorInfo;

	/** 构造方法 */
	public ImportExcel() {
	}

	public int getTotalRows() {
		return totalRows;
	}

	public int getTotalCells() {
		return totalCells;
	}

	public String getErrorInfo() {
		return errorInfo;
	}

	public boolean validateExcel(String filePath) {
		/** 检查文件名是否为空或者是否是Excel格式的文件 */
		if (filePath == null
				|| !(WDWUtil.isExcel2003(filePath) || WDWUtil
						.isExcel2007(filePath))) {
			errorInfo = "文件名不是excel格式";
			return false;
		}
		/** 检查文件是否存在 */
		File file = new File(filePath);
		if (file == null || !file.exists()) {
			errorInfo = "文件不存在";
			return false;
		}
		return true;
	}

	public List<List<String>> read(String filePath) {
		List<List<String>> dataLst = new ArrayList<List<String>>();
		InputStream is = null;
		try {
			/** 验证文件是否合法 */
			if (!validateExcel(filePath)) {
				System.out.println(errorInfo);
				return null;
			}
			/** 判断文件的类型,是2003还是2007 */
			boolean isExcel2003 = true;
			if (WDWUtil.isExcel2007(filePath)) {
				isExcel2003 = false;
			}
			/** 调用本类提供的根据流读取的方法 */
			File file = new File(filePath);
			is = new FileInputStream(file);
			dataLst = read(is, isExcel2003);
			is.close();
		} catch (Exception ex) {
			ex.printStackTrace();
		} finally {
			if (is != null) {
				try {
					is.close();
				} catch (IOException e) {
					is = null;
					e.printStackTrace();
				}
			}
		}
		/** 返回最后读取的结果 */
		return dataLst;
	}

	public List<List<String>> read(InputStream inputStream, boolean isExcel2003) {
		List<List<String>> dataLst = null;
		try {
			/** 根据版本选择创建Workbook的方式 */
			Workbook wb = null;
			if (isExcel2003) {
				wb = new HSSFWorkbook(inputStream);
			} else {
				wb = new XSSFWorkbook(inputStream);
			}
			dataLst = read(wb);
		} catch (IOException e) {

			e.printStackTrace();
		}
		return dataLst;
	}
    
/*
// MultipartFile file 为springMvc上传的那个文件

          ImportExcel importExcel = new ImportExcel();
//        InputStream inputStream = file.getInputStream();
            //获取文件的名字
            String filename = file.getOriginalFilename();
            //根据不同的版本创建不同的对象
            Workbook workbook = null;
            if(filename.endsWith(SUFFIX_2003)){
                workbook = new HSSFWorkbook(file.getInputStream());
            }else if(filename.endsWith(SUFFIX_2007)){
                workbook = new XSSFWorkbook(file.getInputStream());
            }
            List<List<String>> read = importExcel.read(workbook);
返回list数据
*/
	private List<List<String>> read(Workbook wb) {
		DecimalFormat df = new DecimalFormat("0");
		List<List<String>> dataLst = new ArrayList<List<String>>();
		/** 得到第一个shell */
		Sheet sheet = wb.getSheetAt(0);
		/** 得到Excel的行数 */
		this.totalRows = sheet.getPhysicalNumberOfRows();
		/** 得到Excel的列数 */
		if (this.totalRows >= 1 && sheet.getRow(0) != null) {
			this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
		}
		/** 循环Excel的行 */
		for (int r = 0; r < this.totalRows; r++) {
			Row row = sheet.getRow(r);
			if (row == null) {
				continue;
			}
			List<String> rowLst = new ArrayList<String>();
			/** 循环Excel的列 */
			for (int c = 0; c < this.getTotalCells(); c++) {
				Cell cell = row.getCell(c);
				String cellValue = "";
				if (null != cell) {
					// 以下是判断数据的类型
					switch (cell.getCellType()) {
					case HSSFCell.CELL_TYPE_NUMERIC: // 数字
						cellValue = df.format(cell.getNumericCellValue()) + "";
						break;
					case HSSFCell.CELL_TYPE_STRING: // 字符串
						cellValue = cell.getStringCellValue();
						break;
					case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean
						cellValue = cell.getBooleanCellValue() + "";
						break;
					case HSSFCell.CELL_TYPE_FORMULA: // 公式
						cellValue = cell.getCellFormula() + "";
						break;
					case HSSFCell.CELL_TYPE_BLANK: // 空值
						cellValue = "";
						break;
					case HSSFCell.CELL_TYPE_ERROR: // 故障
						cellValue = "非法字符";
						break;
					default:
						cellValue = "未知类型";
						break;
					}
				}
				rowLst.add(cellValue);
			}
			/** 保存第r行的第c列 */
			dataLst.add(rowLst);
		}
		return dataLst;
	}

//	public static void main(String[] args) throws Exception {
//		ImportExcel poi = new ImportExcel();
//		// List<List<String>> list = poi.read("d:/aaa.xls");
//		List<List<String>> list = poi.read("D:\\zhonghe.xls");
//		if (list != null) {
//			for (int i = 0; i < list.size(); i++) {
//				System.out.print("第" + (i) + "行");
//				List<String> cellList = list.get(i);
//				System.out.println("=== 大小 ==== " +cellList.size());
				for (int j = 0; j < cellList.size(); j++) {
//					// System.out.print("    第" + (j + 1) + "列值:");
//					System.out.print("    " + cellList.get(3));
//					System.out.print("    " + cellList.get(5));
//					System.out.print("    " + cellList.get(9));
//					System.out.print("    " + cellList.get(10));
//					System.out.print("    " + cellList.get(14));
//					System.out.print("    " + cellList.get(17));
//					System.out.print("    " + cellList.get(20));
				}
//				System.out.println();
//			}
//
//		}
//
//	}

}

class WDWUtil {
    public static boolean isExcel2003(String filePath) {
        return filePath.matches("^.+\\.(?i)(xls)$");
    }
    public static boolean isExcel2007(String filePath) {
        return filePath.matches("^.+\\.(?i)(xlsx)$");
    }
}

 

`Java`中导入`excleexcelimportutil.importexcel`是用于导入`Excel`文件的工具类。在`Java`中,我们可以使用这个工具类来读取`Excel`文件并将其数据导入到程序中进行处理。 要使用`excleexcelimportutil.importexcel`工具类,首先需要将其引入到项目中。这可以通过在代码文件的顶部使用`import`关键字来实现,例如: ```java import excleexcelimportutil.importexcel; ``` 接下来,我们可以使用`importexcel`类中的方法来导入`Excel`文件。常见的方法包括`readExcelFile`和`importData`等。`readExcelFile`方法通常用于读取整个`Excel`文件,而`importData`方法用于导入指定的数据。 使用`importexcel`类的示例代码如下: ```java import excleexcelimportutil.importexcel; public class Main { public static void main(String[] args) { String filePath = "path/to/excel/file.xlsx"; // 读取整个Excel文件 importexcel.readExcelFile(filePath); // 导入指定的数据 String sheetName = "Sheet1"; int startRow = 1; int endRow = 10; int startColumn = 1; int endColumn = 5; importexcel.importData(filePath, sheetName, startRow, endRow, startColumn, endColumn); } } ``` 以上示例中,我们首先通过`readExcelFile`方法读取整个`Excel`文件的数据,然后通过`importData`方法导入指定的数据。需要注意的是,在使用这些方法之前,我们需要先指定`Excel`文件的路径。 通过这种方式,我们可以使用`excleexcelimportutil.importexcel`工具类来方便地导入`Excel`文件并在程序中进行操作和处理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值