JavaExcel工具类(兼容xls和xlsx)
生活随笔
收集整理的這篇文章主要介紹了
JavaExcel工具类(兼容xls和xlsx)
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
最近用上了導(dǎo)入excel表格處理保存到后臺數(shù)據(jù)庫的功能!利用的是org.apache.poi進(jìn)行處理
示例代碼:
import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook;import java.io.IOException; import java.io.InputStream; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List;/*** Created by LiYangYong on 2022/02/06*/ public class ExcelUtil {private final static String excel2003L =".xls"; //2003- 版本的excelprivate final static String excel2007U =".xlsx"; //2007+ 版本的excel/*** 描述:獲取IO流中的數(shù)據(jù),組裝成List<List<Object>>對象* @param in,fileName* @return* @throws IOException*/public static List<List<Object>> getBankListByExcel(InputStream in, String fileName) throws Exception{List<List<Object>> list = null;//創(chuàng)建Excel工作薄Workbook work = getWorkbook(in,fileName);if(null == work){throw new Exception("創(chuàng)建Excel工作薄為空!");}Sheet sheet = null;Row row = null;Cell cell = null;list = new ArrayList<List<Object>>();//遍歷Excel中所有的sheetfor (int i = 0; i < work.getNumberOfSheets(); i++) {sheet = work.getSheetAt(i);if(sheet==null){continue;}//遍歷當(dāng)前sheet中的所有行for (int j = sheet.getFirstRowNum()+1; j < sheet.getLastRowNum()+1; j++) {row = sheet.getRow(j);if(row==null){continue;}// if(row==null||row.getFirstCellNum()==j){continue;}//遍歷所有的列List<Object> li = new ArrayList<Object>();for (int y = row.getFirstCellNum(); y < row.getLastCellNum(); y++) {cell = row.getCell(y);li.add(getCellValue(cell));}list.add(li);}}//work.close();return list;}/*** 描述:根據(jù)文件后綴,自適應(yīng)上傳文件的版本* @param inStr,fileName* @return* @throws Exception*/public static Workbook getWorkbook(InputStream inStr,String fileName) throws Exception{Workbook wb = null;String fileType = fileName.substring(fileName.lastIndexOf("."));if(excel2003L.equals(fileType)){wb = new HSSFWorkbook(inStr); //2003-}else if(excel2007U.equals(fileType)){wb = new XSSFWorkbook(inStr); //2007+}else{throw new Exception("解析的文件格式有誤!");}return wb;}/*** 描述:對表格中數(shù)值進(jìn)行格式化* @param cell* @return*/public static Object getCellValue2(Cell cell){Object value = null;DecimalFormat df = new DecimalFormat("0"); //格式化number String字符SimpleDateFormat sdf = new SimpleDateFormat("yyy-MM-dd"); //日期格式化DecimalFormat df2 = new DecimalFormat("0.00"); //格式化數(shù)字switch (cell.getCellType()) {case Cell.CELL_TYPE_STRING:value = cell.getRichStringCellValue().getString();break;case Cell.CELL_TYPE_NUMERIC:if("General".equals(cell.getCellStyle().getDataFormatString())){value = df.format(cell.getNumericCellValue());}else if("m/d/yy".equals(cell.getCellStyle().getDataFormatString())){value = sdf.format(cell.getDateCellValue());}else{value = df2.format(cell.getNumericCellValue());}break;case Cell.CELL_TYPE_BOOLEAN:value = cell.getBooleanCellValue();break;case Cell.CELL_TYPE_BLANK:value = "";break;default:break;}return value;}@SuppressWarnings("deprecation")public static String getCellValue(Cell cell) {if (cell == null)return "";if (cell.getCellType() == Cell.CELL_TYPE_STRING) {return cell.getStringCellValue();} else if (cell.getCellType() == Cell.CELL_TYPE_BOOLEAN) {return String.valueOf(cell.getBooleanCellValue());} else if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) {return cell.getCellFormula();} else if (cell.getCellType() == Cell.CELL_TYPE_NUMERIC) {short format = cell.getCellStyle().getDataFormat();System.out.println("format:"+format+";;;;;value:"+cell.getNumericCellValue());SimpleDateFormat sdf = null;if (format == 14 || format == 31 || format == 57 || format == 58|| (176<=format && format<=178) || (182<=format && format<=196)|| (210<=format && format<=213) || (208==format ) ) { // 日期sdf = new SimpleDateFormat("yyyy-MM-dd");} else if (format == 20 || format == 32 || format==183 || (200<=format && format<=209) ) { // 時間sdf = new SimpleDateFormat("HH:mm");} else { // 不是日期格式return String.valueOf(cell.getNumericCellValue());}double value = cell.getNumericCellValue();Date date = DateUtil.getJavaDate(value);if(date==null || "".equals(date)){return "";}String result="";try {result = sdf.format(date);} catch (Exception e) {e.printStackTrace();return "";}return result;}return "";} }大家點贊、收藏、關(guān)注、評論啦 、查看下方👇🏻👇🏻👇🏻微信公眾號獲取👇🏻👇🏻👇🏻
打卡 文章 更新?186/ ?365天
專欄推薦閱讀:
java項目精品實戰(zhàn)案例《100套》
web前端期末大作業(yè)網(wǎng)頁實戰(zhàn)《100套》
總結(jié)
以上是生活随笔為你收集整理的JavaExcel工具类(兼容xls和xlsx)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: HTML+CSS+JS实现 ❤️圆圈倒计
- 下一篇: HTML+CSS+JS实现 ❤️发光的线