java POI讀取Excel文件
import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import java.util.Map;import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.poi.hssf.usermodel.HSSFCell; 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;
import com.neusoft.counter.vo.LoginIdStaffNo;
public class ExcelDemo {
private static final Log log = LogFactory.getLog(ExcelDemo.class); public List parseExcel(File in) { List arrayList = new ArrayList(); FileInputStream fis = null; POIFSFileSystem fs = null; try { fis = new FileInputStream(in); fs = new POIFSFileSystem(fis); HSSFWorkbook wb = new HSSFWorkbook(fs); // first sheet HSSFSheet sheet = wb.getSheetAt(0); int lastRow = sheet.getLastRowNum(); HSSFRow row = null; HSSFCell cell = null; int columnNum = row.getLastCellNum(); String data[] = new String[2]; // 讀取Excel表格 for (int i = 1; i <= lastRow; i++) { // 行循環 row = sheet.getRow(i); for (int j = 0; j < columnNum; j++) { // 列循環 cell = row.getCell((short) j); if (cell != null && cell.getCellType() != HSSFCell.CELL_TYPE_BLANK) { data[j] = cell.getStringCellValue().trim(); } } // TODO add to List } } catch (FileNotFoundException e) { log.error(e); } catch (IOException e) { log.error(e); } return arrayList; } public void writeToExcel(Map map, File outFile) throws IOException { if (map == null) { log.info("沒有輸出到excel的數據!"); return; } HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet = wb.createSheet(); // 標題 HSSFRow title = sheet.createRow(0); HSSFCell userCell = title.createCell((short) 0), staffCell = title .createCell((short) 1), _infoCell = title.createCell((short) 2); userCell.setEncoding(HSSFCell.ENCODING_UTF_16); userCell.setCellValue("后臺用戶"); staffCell.setEncoding(HSSFCell.ENCODING_UTF_16); staffCell.setCellValue("柜員號"); _infoCell.setEncoding(HSSFCell.ENCODING_UTF_16); _infoCell.setCellValue("失敗原因"); for (Iterator itr = map.keySet().iterator(); itr.hasNext();) { String key = (String) itr.next(); List list = (List) map.get(key); String info = ""; if ("1".equals(key)) info = "后臺用戶不存在"; else if ("2".equals(key)) info = "柜員號重復"; else if ("3".equals(key)) info = "插入數據庫出錯"; appendToSheet(sheet, list, info); } FileOutputStream fos = new FileOutputStream(outFile); wb.write(fos); fos.close(); } private void appendToSheet(HSSFSheet sheet, List datas, String info) { if (datas == null) return; int offset = sheet.getLastRowNum(); int size = datas.size(); for (int i = 0; i < size; i++) { LoginIdStaffNo ls = (LoginIdStaffNo) datas.get(i); HSSFRow row = sheet.createRow(offset + i + 1); row.createCell((short) 0).setCellValue(ls.getUserLoginId()); row.createCell((short) 1).setCellValue(ls.getStaffNo()); HSSFCell infoCell = row.createCell((short) 2); infoCell.setEncoding(HSSFCell.ENCODING_UTF_16); infoCell.setCellValue(info); } }
}</pre>
本文由用戶 fp34 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!