gpt4 book ai didi

java - 在 HSSFWorkbook 中设置 Activity 单元格

转载 作者:行者123 更新时间:2023-12-05 07:34:43 26 4
gpt4 key购买 nike

我正在尝试使用 Apache POI 3.17 创建一个带有预选特定单元格的旧式 Excel 文档 (HSSFWorkbook)。下面的代码真的很难看(它使用了反射和私有(private)字段)但是完成了工作。

是否有更好的方法来实现相同的目标?

import java.io.File;
import java.io.IOException;
import java.lang.reflect.Field;

import org.apache.poi.hssf.model.InternalSheet;
import org.apache.poi.hssf.record.SelectionRecord;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.CellRangeAddress8Bit;
import org.apache.poi.ss.util.CellAddress;

public class ExcelGeneratorDemo {

public static void main(String[] args) throws IOException {
writeExcelFile("D21");
}

private static void writeExcelFile(String activeCell) throws IOException {
HSSFWorkbook wb = new HSSFWorkbook();
HSSFSheet sheet = wb.createSheet();
CellAddress address = new CellAddress(activeCell);
setActiveCell(sheet, address);
wb.write(new File(activeCell + ".xls"));
}

/**
* Calling just {@code sheet.setActiveCell} has no effect when opening
* the file with Microsoft Excel 2016.
*/
private static void setActiveCell(HSSFSheet sheet, CellAddress address) {
sheet.setActiveCell(address);

// Following three private fields in a row cannot be the correct path.
InternalSheet internalSheet = getField(sheet, "_sheet");
SelectionRecord selection = getField(internalSheet, "_selection");
CellRangeAddress8Bit[] ranges = getField(selection, "field_6_refs");

ranges[0].setFirstColumn(address.getColumn());
ranges[0].setLastColumn(address.getColumn());
ranges[0].setFirstRow(address.getRow());
ranges[0].setLastRow(address.getRow());
}

private static <T> T getField(Object obj, String fieldName) {
try {
Field field = obj.getClass().getDeclaredField(fieldName);
field.setAccessible(true);
return (T) field.get(obj);
} catch (ReflectiveOperationException e) {
throw new IllegalStateException(e);
}
}
}

A similar question关于 HSSF 也有一些解决方法代码。它不使用反射,但其解决方法代码也不是直截了当的。

最佳答案

这是一个bug in POI up to 3.17 , 已在当前开发版本中修复。

一旦发布,它可能会在 3.18 中修复。

关于java - 在 HSSFWorkbook 中设置 Activity 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50008212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com