English 中文(简体)
利用甲型六氯环己烷检测外阴道中的隐蔽细胞
原标题:Detecting hidden cells in excel using apache poi

我们正在使用pache poi 3.8 par。 我们需要能够发现(和天空)隐藏的囚室,因为它们往往把黄麻数据列入我们的使用案例。

似乎应当做到:

row.isFormatted() && row.getRowStyle().getHidden()

但似乎从未出现过任何增长级的配制(植被分类法总是无效)。 作为最后的手段,我们认为检查囚室的风格可以发挥作用:

for (int i = 0; i < row.getLastCellNum(); i++) {
    Cell cell = row.getCell(i);
    if (cell != null && cell.getCellStyle() != null && cell.getCellStyle().getHidden())
        ...

但是,对于我们获得的每一行,( lo底产出):

Cell 0 is not hidden org.apache.poi.hssf.usermodel.HSSFCellStyle@1b9142d0 / false

“植被(植被)”没有工作,也没有像我所认为的那样发挥作用? 是否有另一种办法来发现隐蔽的牢房? (栏目也是一种冰红利,但与时俱减)

最佳回答

。 通常应当按照您的设想开展工作。

Otherwise, you can check the height of the row, as hidden rows tends to have a height set to 0. Using row.getHeight() or row.getZeroHeight().

问题回答

在尝试几种办法之后,row.getZeroHels()为识别隐蔽的行文做了正确的工作。 对于那些与Apache POI <混在一起的人来说,这可能是唯一的解决办法。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签