JAVA处理Excel表格数据并写入数据库

        Excel提供了把SQLServer作为数据源导入数据的技术,但似乎没有提供方法把Excel中的数据导入到数据库。Apache的POI提供了Java程序对Microsoft Office格式档案读和写的功能。

基本功能:

                HSSF - 提供读写Microsoft Excel格式档案的功能。

                XSSF - 提供读写Microsoft Excel OOXML格式档案的功能。

                HWPF - 提供读写Microsoft Word格式档案的功能。

                HSLF - 提供读写Microsoft PowerPoint格式档案的功能。

                HDGF - 提供读写Microsoft Visio格式档案的功能。

导入jar包:

                JAVA处理Excel表格数据并写入数据库_第1张图片

当然还有数据库驱动包。

jar包下载地址:https://www.apache.org/dyn/closer.lua/poi/release/bin/poi-bin-4.0.0-20180907.zip           

下面就可以解析excel文档了:   

package com.hncj.test;

import java.io.FileInputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;

import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Row;
import org.junit.Test;

public class ExcelReader {

        //获取数据库连接
	public static Connection getConnection() throws Exception {
		Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
		Connection connection = DriverManager.getConnection("jdbc:sqlserver://localhost:1433;DatabaseName=JWGL", "sa", "112233");
		return connection;
	}
	
	
	public static void main(String[] args) {
		try {
                        //获取excel文件的输入流,必须是.xls后缀,如果是xlsx后缀,要用XSSFWorkBook
			FileInputStream fis = new FileInputStream("src/info.xls");
			HSSFWorkbook hssfWorkbook = new HSSFWorkbook(fis);
                        //获取表格
			HSSFSheet sheetAt = hssfWorkbook.getSheetAt(0);
			Connection connection = getConnection();
			String sql = "insert into XS values(?,?,?,?,?)";
			PreparedStatement ps = connection.prepareStatement(sql);
                        //遍历每行及每个单元格
			for (Row row : sheetAt) {
                                //每个单元格有不同的数值类型,具体可以通过cell的getCellType()方法查看
				ps.setString(1, row.getCell(0).getStringCellValue().toString());
				ps.setString(2, row.getCell(1).getStringCellValue().toString());
				ps.setInt(3, (int)row.getCell(2).getNumericCellValue());
				ps.setString(4, row.getCell(3).getStringCellValue().toString());
				ps.setString(5, row.getCell(4).getStringCellValue().toString());
				ps.execute();
			}
			ps.close();
			connection.close();
		}catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

}

 

你可能感兴趣的:(JAVA处理Excel表格数据并写入数据库)