Apache POI读取excel文件数据的正确做法

来源:爱站网时间:2022-04-09编辑:网友分享
在java编程中,你清楚Apache POI读取excel文件数据的正确做法是什么吗?想要了解这方面内容的小伙伴,可以来看看爱站技术频道小编所整理的资料,希望能帮助到你。

问题描述


我想读取特定行中的数据并使用Apache POI打印它。例:我想在Excel文件中打印行= 4,并且行号将不断变化。

    Iterator rowIterator = sheet.iterator();
    rowData = new ArrayList();

    Row row = rowIterator.next();
    Iterator cellIterator = row.cellIterator();
    while (cellIterator.hasNext()){
        Cell cell = cellIterator.next();
        System.out.println("Col Index = "+cell.getColumnIndex());
        System.out.println("Col Index = "+cell.getStringCellValue());

    }

我尝试了上面的代码,它在excel中给了我第一行,但我希望从excel中获得特定行。

思路:


这样的事情?

Row row = sheet.getRow(4);

Iterator cellIterator = row.cellIterator();
while (cellIterator.hasNext()){
    Cell cell = cellIterator.next();
    System.out.println("Col Index = "+cell.getColumnIndex());
    System.out.println("Col Index = "+cell.getStringCellValue());

}

Apache POI读取excel文件数据的正确做法想必各位小伙伴都看明白了吧!想要了解不一样的技术文章内容,可以随时来关注下爱站技术频道网站。

上一篇:如何手动将SoapMessageHandler添加到SoapBinding

下一篇:对Apache骆驼路线无法执行的解决思路

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载