1. 程式人生 > >springboot打成jar包後無法讀取resource資料夾下檔案模板---------------gxy

springboot打成jar包後無法讀取resource資料夾下檔案模板---------------gxy

springboot打成jar包後無法讀取resource資料夾下檔案模板

BufferedInputStream bis = null;  
 OutputStream os = null; 
ClassPathResource cpr = new ClassPathResource("/templates/excelmodual/" + fileName);
os = response.getOutputStream(); 
bis = new BufferedInputStream(cpr.getInputStream());

這樣才能讀取到jar包裡面的檔案了