本文主要是介绍Springboot jar包部署后不能读取resources目录下的Excel文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
最近做线下数据补录到线上,因为关联了5个数据表,所以没法写SQL执行。
在本地测试的时候,使用如下读文件的方式是正常的:
String fileName = "xxxFile.xlsx";String filePath = this.getClass().getClassLoader().getResource(fileName).getPath();InputStream stream = new FileInputStream(filePath);
但是线上部署以后,读取文件时,会到项目路径下的 …/BOOT-INF/lib/…文件路径下读取,然后会报 FileNotFoundException
改为下面的方式读取文件就可以了:
String fileName = "xxxFile.xlsx";ClassPathResource resource = new ClassPathResource(fileName);InputStream stream = resource.getInputStream();
下面附上读取Excel文件的代码:
注:表头使用字段名会非常方便,可以直接转成业务对象
List<Map<String, String>> mapList = ReadFileUtil.readFile(fileName, stream);
List<OfflinePaymentOrder> list = JSONObject.parseArray(JSONObject.toJSONString(mapList), OfflinePaymentOrder.class);
package com.ke.utopia.payment.service.util;import com.google.common.collect.Lists;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFDateUtil;
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;import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.text.DecimalFormat;
import java.util.*;/*** 读取文件内容,支持:xls,xlsx,csv,txt 格式* 默认第一行的内容为key值*/
public class ReadFileUtil {private static final String UTF8_CHARCODE = "efbbbf";private static final String GBK_CHARTYPE = "GB2312";private static final String UTF8_CHARTYPE = "UTF-8";public static List<Map<String, String>> readFile(String excelName, InputStream inputStream) {List<Map<String, String>> list = new ArrayList<>();if (excelName.endsWith("csv") || excelName.endsWith("txt")) {list = readTxtOrCsvFile(inputStream);} else if (excelName.endsWith("xls") || excelName.endsWith("xlsx")) {list = readExcel(excelName, inputStream);}return list;}private static List<Map
这篇关于Springboot jar包部署后不能读取resources目录下的Excel文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!