将 cloneSheet 与 poi SXSSF 一起使用

Using cloneSheet with poi SXSSF

我正在使用 SXSSF 在一个 excel- 文件中写入大量数据。

我看到 'cloneSheet' 方法没有实现:

/**
 * Create an Sheet from an existing sheet in the Workbook.
 *
 * @return Sheet representing the cloned sheet.
 */
public Sheet cloneSheet(int sheetNum)
{
    throw new RuntimeException("NotImplemented");
}

但我不明白为什么。它丢失在逻辑上是否正确?或者这是一个错误?

我期待您的回答并帮助我使用 SXSSF 克隆工作表。

此致,路易莎。

谢谢@Gagravarr: "SXSSF only does things that can work in a streaming manner, which cloning can't."

我决定先将所有工作表放在我的 Excel 模板中,当我不使用它们时,我将它们删除....