原理:将所有excel表格放在一个文件夹下。java获取文件夹下的所有excel文件,并且逐一读取excel文件的数据并且存在list集合。创建新的表格,将list集合的数据写入表格即可!代码如下
package excel_many_to_one;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import jxl.read.biff.BiffException;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
/**
* 操作Excel表格的功能类
*/
public class ExcelResolve {
private static POIFSFileSystem fs;
private static HSSFWorkbook wb;
private static HSSFSheet sheet;
private static HSSFRow row;
static List<Map<String, Object>> list = new ArrayList();
public static void main(String[] args) throws IOException {
// 设置标题,即表格第一行,存入集合
Map<String, Object> map = new HashMap<>();
map.put("js", "计数");
map.put("mc", "名称");
map.put("x", "位置 X");
map.put("y", "位置 Y");
map.put("z", "位置 Z");
list.add(map);
// 本地存放excel文件的包路径
String path = "C:/Users/Administrator/Desktop/excel";
// 读取包下所有excel数据传到集合里
readFile(path);
// 创建并且将集合数据写入表格
write();
}
/**
* 搜索所有的excel,并且循环调用excel数据处理方法
*
* @param path
* @throws BiffException
* @throws IOException
*/
public static void readFile(String path) throws IOException {
File file = new File(path);
// 获取包下所有excel文件的名称集合
String[] filelist = file.list();
for (int i = 0; i < filelist.length; i++) {
// 获取excel文件
InputStream is = new FileInputStream(path + "\\" + filelist[i]);
// 传入excel文件进行处理
readExcelContent(is);
}
}
/**
* excel数据处理(读取excel数据并存入list)
*
* @param InputStream
* @return
* @return Map 包含单元格数据内容的Map对象
* @throws IOException
*/
public static void readExcelContent(InputStream is) throws IOException {
fs = new POIFSFileSystem(is);
wb = new HSSFWorkbook(fs);
sheet = wb.getSheetAt(0);
// excel总行数
int rowNum = sheet.getLastRowNum();
row = sheet.getRow(0);
// 我的excel第一行是标题,数据从第二行开始读取
for (int i = 1; i <= rowNum; i++) {
row = sheet.getRow(i);
Map<String, Object> map = new HashMap<>();
// 此处为我的固定格式,比如有五列,则map自定义有5个key-value数据,存入list
map.put("js", row.getCell(0));
map.put("mc", row.getCell(1));
map.put("x", row.getCell(2));
map.put("y", row.getCell(3));
map.put("z", row.getCell(4));
list.add(map);
}
}
/**
* 创建表格并且数据写入表格
* @throws IOException
*/
public static void write() throws IOException {
// 创建表格
HSSFWorkbook hSSFWorkbook = new HSSFWorkbook();
// 单元创建
HSSFSheet hHSSFSheet = hSSFWorkbook.createSheet("数据整合");
for (int i = 0; i < list.size(); i++) {
HSSFRow row = hHSSFSheet.createRow(i);
// 此处为我的固定格式,比如有五列,则map自定义有5个key-value数据插入excel
row.createCell(0).setCellValue(list.get(i).get("js").toString());
row.createCell(1).setCellValue(list.get(i).get("mc").toString());
row.createCell(2).setCellValue(list.get(i).get("x").toString());
row.createCell(3).setCellValue(list.get(i).get("y").toString());
row.createCell(4).setCellValue(list.get(i).get("z").toString());
}
FileOutputStream file = new FileOutputStream("C:/Users/Administrator/Desktop/整合.xls");
hSSFWorkbook.write(file);
file.flush();
}
}