java
@GetMapping("/importTestPeople")
public void importTestPeople(@RequestParam("file") MultipartFile multipartFile) throws IOException {
InputStream inputStream = null;
File file = null;
try {
// 创建临时文件
file = File.createTempFile("temp", null);
// 把multipartFile写入临时文件
multipartFile.transferTo(file);
// 使用文件创建 inputStream 流
inputStream = new FileInputStream(file);
//读取Word文档
XWPFDocument document = new XWPFDocument(inputStream);
List<StringBuffer> joinList = new ArrayList<>();
// 获取文档中的所有表格
List<XWPFTable> tables = document.getTables();
for (XWPFTable table : tables) {
// 获取表格的行
List<XWPFTableRow> rows = table.getRows();
// 遍历每一行
for (XWPFTableRow row : rows) {
// 获取行中的单元格
List<XWPFTableCell> cells = row.getTableCells();
//存入数据
StringBuffer stringBuffer = new StringBuffer();
// 遍历每个单元格
for (XWPFTableCell cell : cells) {
// 输出单元格的文本内容
System.out.print(cell.getText() + "|");
stringBuffer.append(cell.getText() + "|");
}
joinList.add(stringBuffer);
System.out.println(); // 换行
}
System.out.println(); // 表格间换行
}
for(int i = 0; i<joinList.size();i ++){
String[] split = joinList.get(i).toString().split("\\|");
ManualModeInfomation manualModeInfomation = new ManualModeInfomation();
manualModeInfomation.setId(Integer.valueOf(split[0]));
manualModeInfomation.setModelId(2);
//父级
manualModeInfomation.setFatherLevel(split[1]);
//子级
manualModeInfomation.setChildLevel(split[2]);
//故障现象
manualModeInfomation.setFaultPhenomenon(split[4]);
//主要原因
manualModeInfomation.setMainCause(split[5]);
//解决方法
manualModeInfomationMapper.insert(manualModeInfomation);
}
}catch (Exception e){
e.printStackTrace();
}finally {
// 最后记得删除文件
file.deleteOnExit();
// 关闭流
inputStream.close();
}
说明:应用方面是word版且为表格,可解析,能看懂的自然会微调,感谢大家!!!
如:需word为表格形式