How can I parse this file when I import an excel file in an excel format like this? <喎?http: www.bkjia.com kf ware vc " target="_blank" class="keylink"> VcD4KPHA + yOe5 + 8D708PV/combine + y/combine + merge + PC9wPgo8cHJlIGNsYXNzPQ = "brush: java;">/*** merge cells for processing, obtain the merged row * @ param sheet * @ return List */Public List GetCombineCell (Sheet sheet) {List List = new ArrayList (); // Obtain the number of merged cells in a sheet. int sheetmergerCount = sheet. getNumMergedRegions (); // traverse the merged cells for (int I = 0; I ListCombineCell, Cell cell, Sheet sheet) throws Exception {int firstC = 0; int lastC = 0; int firstR = 0; int lastR = 0; String cellValue = null; for (CellRangeAddress ca: listCombineCell) {// obtain the start row of the merged cell, end row, start column, and end column firstC = ca. getFirstColumn (); lastC = ca. getLastColumn (); firstR = ca. getFirstRow (); lastR = ca. getLastRow (); if (cell. getRowIndex ()> = firstR & cell. getRowIndex () <= lastR) {if (cell. getColumnIndex ()> = firstC & cell. getColumnIndex () <= lastC) {Row fRow = sheet. getRow (firstR); Cell fCell = fRow. getCell (firstC); cellValue = getCellValue (fCell); break ;}} else {cellValue = "" ;}} return cellValue ;}