我能够获取并设置作者和标题名称,但无法在输出文件中看到它。当我通过单击右侧和我的输出文件查看详细信息时,它具有旧作者和标题名称。请帮我..
我正在使用 poi apache api 来处理 excel 文件。
以下是我的代码示例:
public void processPOIFSReaderEvent(POIFSReaderEvent event)
{
SummaryInformation si = null;
si = (SummaryInformation) PropertySetFactory.create(event.getStream());
si.setTitle(title);
si.setAuthor("Author Name");
}