web-dev-qa-db-ja.com

Apache-POIライブラリを使用してセルコンテンツを取得すると、「テキストセルから数値を取得できません」とその逆の両方が表示されます。どうすれば修正できますか?

私は質問が少し混乱していることを知っていますが、それを他の言葉で表現する方法を知りませんでした。とにかく、元のコードは次のとおりです。

private void readFile(String excelFileName) throws FileNotFoundException, IOException {
    XSSFWorkbook workbook = new XSSFWorkbook(new FileInputStream(excelFileName));
    if (workbook.getNumberOfSheets() > 1){
        System.out.println("Please make sure there is only one sheet in the Excel workbook.");
    }
    XSSFSheet sheet = workbook.getSheetAt(0);
    int numOfPhysRows = sheet.getPhysicalNumberOfRows();
    XSSFRow row;
    XSSFCell num;
    for(int y = 1;y < numOfPhysRows;y++){    //start at the 2nd row since 1st should be category names
        row = sheet.getRow(y);
        poNum = row.getCell(1);
        item = new Item(Integer.parseInt(poNum.getStringCellValue());
        itemList.add(item);
        y++;
    }
}

private int poiConvertFromStringtoInt(XSSFCell cell){
    int x = Integer.parseInt(Double.toString(cell.getNumericCellValue()));
    return x;
}

次のエラーが表示されます。

Exception in thread "main" Java.lang.IllegalStateException: Cannot get a numeric value from a text cell
    at org.Apache.poi.xssf.usermodel.XSSFCell.typeMismatch(XSSFCell.Java:781)
    at org.Apache.poi.xssf.usermodel.XSSFCell.getNumericCellValue(XSSFCell.Java:199)

XSSFCell.getStringCellValue()またはXFFSCell.getRichTextValueを使用して文字列を取得するように変更しても、上記のエラーメッセージの逆を取得します(そして、Integer.parseInt(XSSFCell.getStringCellValue())。

エラーは次のようになります。

Exception in thread "main" Java.lang.IllegalStateException: Cannot get a text value from a numeric cell
    at org.Apache.poi.xssf.usermodel.XSSFCell.typeMismatch(XSSFCell.Java:781)
    at org.Apache.poi.xssf.usermodel.XSSFCell.getNumericCellValue(XSSFCell.Java:199)

Excelスプレッドシートの列が実際には文字列であることは事実です。常に同じ形式を使用し、各列を最初にフォーマットすると、処理に時間がかかる他の場所にアップロードされるため、Excelシートを変更することはできません。

助言がありますか?

[解決策] @Wivaniのヘルプから思いついた解決策のコードは次のとおりです。

private long poiGetCellValue(XSSFCell cell){
    long x;
    if(cell.getCellType() == 0)
        x = (long)cell.getNumericCellValue();
    else if(cell.getCellType() == 1)
        x = Long.parseLong(cell.getStringCellValue());
    else
        x = -1;
    return x;
}
22
crstamps2
Use This as reference

switch (cell.getCellType()) {
                case Cell.CELL_TYPE_STRING:
                    System.out.println(cell.getRichStringCellValue().getString());
                    break;
                case Cell.CELL_TYPE_NUMERIC:
                    if (DateUtil.isCellDateFormatted(cell)) {
                        System.out.println(cell.getDateCellValue());
                    } else {
                        System.out.println(cell.getNumericCellValue());
                    }
                    break;
                case Cell.CELL_TYPE_BOOLEAN:
                    System.out.println(cell.getBooleanCellValue());
                    break;
                case Cell.CELL_TYPE_FORMULA:
                    System.out.println(cell.getCellFormula());
                    break;
                default:
                    System.out.println();
            }
53
Mayank

このセルに定義された形式を使用して、値を文字列として取得できます。

final DataFormatter df = new DataFormatter();
final XSSFCell cell = row.getCell(cellIndex);
String valueAsString = df.formatCellValue(cell);

この回答 に感謝します。

24
Thierry

Cell.setCellType(1);を使用してください。セル値を読み取り、常に文字列として取得する前に、その後、独自の形式(タイプ)で使用できます。

ラビ

21
user1891180

以下のコードを使用して、poiを使用してxcelsから任意のデータ型を読み取ります。

import Java.io.File;
import Java.io.FileInputStream;
import Java.io.FileNotFoundException;
import Java.util.Iterator;
import org.Apache.poi.ss.usermodel.Cell;
import org.Apache.poi.ss.usermodel.DataFormatter;
import org.Apache.poi.ss.usermodel.Row;
import org.Apache.poi.xssf.usermodel.XSSFSheet;
import org.Apache.poi.xssf.usermodel.XSSFWorkbook;

/**
 *
 * @author nirmal
 */
public class ReadWriteExcel {

    public static void main(String ar[]) {
        ReadWriteExcel rw = new ReadWriteExcel();
        rw.readDataFromExcel();

    }
    Object[][] data = null;

    public File getFile() throws FileNotFoundException {
        File here = new File("test/com/javaant/ssg/tests/test/data.xlsx");
        return new File(here.getAbsolutePath());

    }

    public Object[][] readDataFromExcel() {
        final DataFormatter df = new DataFormatter();
        try {

            FileInputStream file = new FileInputStream(getFile());
            //Create Workbook instance holding reference to .xlsx file
            XSSFWorkbook workbook = new XSSFWorkbook(file);

            //Get first/desired sheet from the workbook
            XSSFSheet sheet = workbook.getSheetAt(0);

            //Iterate through each rows one by one
            Iterator<Row> rowIterator = sheet.iterator();

            int rownum = 0;
            int colnum = 0;
            Row r=rowIterator.next();

            int rowcount=sheet.getLastRowNum();
            int colcount=r.getPhysicalNumberOfCells();
            data = new Object[rowcount][colcount];
            while (rowIterator.hasNext()) {
                Row row = rowIterator.next();

                //For each row, iterate through all the columns
                Iterator<Cell> cellIterator = row.cellIterator();
                colnum = 0;
                while (cellIterator.hasNext()) {

                    Cell cell = cellIterator.next();
                    //Check the cell type and format accordingly
                    data[rownum][colnum] =  df.formatCellValue(cell);
                    System.out.print(df.formatCellValue(cell));
                    colnum++;
                    System.out.println("-");
                }
                rownum++;
                System.out.println("");
            }
            file.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

        return data;
    }
}
3
Nirmal Dhara

POIバージョン3.12finalでもこのバグが発生しました。
バグはそこに登録されていると思います: https://bz.Apache.org/bugzilla/show_bug.cgi?id=56702 そして、分析にコメントを付けました。

ここに私が使用した回避策があります:例外は、DateUtil.isCellDateFormattedによって呼び出されたHSSFCell.getNumericCellValueによって発生しました。 DateUtil.isCellDateFormattedは2つのことを行います:
1)HSSFCell.getNumericCellValueを呼び出し、次にDateUtil.isValidExcelDate()を呼び出してセルの値の型を確認します。
2)セルの形式が日付形式かどうかを確認します

上記のトピック2)のコードを新しい関数 'myIsADateFormat'にコピーし、DateUtil.isCellDateFormattedの代わりに使用しました(ライブラリコードをコピーするのは非常に汚いですが、動作します...):

private boolean myIsADateFormat(Cell cell){
    CellStyle style = cell.getCellStyle();
    if(style == null) return false;
    int formatNo = style.getDataFormat();
    String formatString = style.getDataFormatString();
    boolean result = DateUtil.isADateFormat(formatNo, formatString);
    return result;
}

最初に値の型を確認する必要がある場合は、これも使用できます。

CellValue cellValue = evaluator.evaluate(cell);
int cellValueType = cellValue.getCellType();
if(cellValueType == Cell.CELL_TYPE_NUMERIC){
    if(myIsADateFormat(cell){
        ....
    }
}
2
Herve

ドキュメントでは、Thierryが説明したように、CellFormatを1に設定せずにDataFormatterを使用するように明確に記述しています。

https://poi.Apache.org/apidocs/org/Apache/poi/ss/usermodel/Cell.html#setCellType(int)

1
Jobin Thomas

Raviのソリューションは動作します:cell.setCellType(1)を使用するだけです;セル値を読み取り、常に文字列として取得する前に、その後、独自の形式(タイプ)で使用できます。

0
JavaLover