我有:

import org.apache.poi.ss.usermodel.Row;

if ((currentRow = sheet.getRow(currentDataRow)) == null) {
            currentRow = sheet.createRow(currentDataRow);   // Creates a new row.
        }

// How to un-hide currentRow ?

currentRow是隐藏的,因此要使用此currentRow对象取消隐藏行?
请帮忙.. !!

最佳答案

看起来是getRowStyle().setHidden()

currentRow.getRowStyle().setHidden(false);


有关getRowStyle的更多信息。

关于java - 如何使用Java中的Apache Poi在Excel中取消隐藏行?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6923153/

10-12 20:36