You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@poi.apache.org by 韩浩 <ha...@100.me> on 2022/09/07 01:40:01 UTC

Howto write metadata to xls with hssf

Dear sir,
I have a scenario that we need to add some messages to the metadata of xls files.&nbsp;
We know that it is workable for xlsx with the following code:
        XSSFWorkbook workbook = new XSSFWorkbook(fis);         POIXMLProperties props = workbook.getProperties(); 


However, most of our files are xls. So, I need you help on how to add properties to xls files with hssf?
Thanks!