Spring Boot 框架之将本地excel上传到数据库

上传excel文件到数据库,先将本地文件excel解析,输出到控制台,然后映射成对应excel的java Bean ,最后向数据库中写入,数据库中有对应的表,无数据,则插入,有数据则更新。

读取excel方法 输出到控制台:

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.read.biff.BiffException;

/**
* @author james
* @version 1.0
* @Date 创建时间:2018年3月9日 下午5:34:19 
* 本类说明 : 读取excel方法 输出到控制台
*/
public class ExcelReader {
	/**
	 * 
	 * @param excelFile 读取文件对象
	 * @param rowNum 从第几行开始读,如果有一行表头则从第二行开始读
	 * @return
	 * @throws BiffException
	 * @throws IOException
	 */
	public static List<String[]> readExcel(File excelFile,int rowNum) throws Exception,
			IOException {
		// 创建一个list 用来存储读取的内容
		List<String[]> list = new ArrayList<String[]>();
		Workbook rwb = null;
		Cell cell = null;
		// 创建输入流
		InputStream stream = new FileInputStream(excelFile);
		// 获取Excel文件对象
		rwb = Workbook.getWorkbook(stream);
		// 获取文件的指定工作表 默认的第一个
		Sheet sheet = rwb.getSheet(0);
		// 行数(表头的目录不需要,从1开始)
		for (int i = rowNum-1; i < sheet.getRows(); i++) {
			// 创建一个数组 用来存储每一列的值
			String[] str = new String[sheet.getColumns()];
			// 列数
			for (int j = 0; j < sheet.getColumns(); j++) {
				// 获取第i行,第j列的值
				cell = sheet.getCell(j, i);
				str[j] = cell.getContents();
			}
			// 把刚获取的列存入list
			list.add(str);
		}
		// 返回值集合
		return list;
	}
	
	public static void main(String[] args) throws Exception {
		String excelFileName = "D:\\test.xlsx";
		try {
			List<String[]> list = ExcelReader.readExcel(new File(excelFileName),1);
			for (int i = 0; i < list.size(); i++) {
				String[] str = (String[])list.get(i);
				for (int j = 0; j < str.length; j++) {
					System.out.println(str[j]);
				}
			}
		} catch (BiffException e) {
			e.printStackTrace();
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}

  

posted @ 2018-03-12 11:03  用什么暖你一千岁!  阅读(592)  评论(0编辑  收藏  举报