如何获取读取Excel文件的最后一列索引?
使用 Apache POI API 读取 xlsx
文件时如何获取最后一列的索引?
有一个 getLastRowNum
方法,但我找不到与列数相关的任何内容...
编辑: 我正在处理 XLSX
文件
How do i get the index of the last column when reading a xlsx
file using the Apache POI API?
There's a getLastRowNum
method, but I can't find nothing related to the number of columns...
EDIT:
I'm dealing with XLSX
files
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您必须遍历行并检查
HSSFRow.getLastCellNum()
在每个上。I think you'll have to iterate through the rows and check
HSSFRow.getLastCellNum()
on each of them.检查每一行并调用
Row.getLastCellNum()
最大单元格数是最后一列数。Check each Row and call
Row.getLastCellNum()
the max cell number is the last column number.要了解任何行的最后一列具有值,首先需要获取该行,然后您可以找到具有值的最后一列
语法:
RowNumber
-->是您想要了解具有值的最后一列的行号To get to know the last column that has value of any row , First you need to get the row and then you can find the last column that has value
Syntax :
RowNumber
--> is the row number for which you want to know the last column that has value试试这个功能:
Try this function: