It appears that hyperlink cells are not created correctly when using the POI SXSSF implementation. I have taken an exact copy of the example code from the HOW-TO guide for creating hyperlinks and changed the workbook to be SXSSF instead of XSSF, and the hyperlinks no longer function.

Has anyone else seen this problem or discovered a workaround?

Thanks,

Mark.

link|improve this question
feedback

1 Answer

SXSSF is quite new, and currently aimed at only certain tasks. If you can, I'd advise you to look at how XSSF does it, and submit a patch!

In the mean time, you can probably get away with using the HYPERLINK function instead. Set your cell to be a formula cell, and set the Formula to be something like HYPERLINK('http://stackoverflow.com/','Stack Overflow') and it'll show as a link in Excel

Update: Support was added to SXSSF to support hyperlinks in r1145629

link|improve this answer
Thanks for the response. Unfortunately it looks like SXSSF cannot handle the hyperlink formula either. cell.setCellFormula("HYPERLINK(\"www.test1.com\",\"test\")"); This creates the link correctly but populates the text in the cell as "0". Using cell.setCellValue("test") doesn't appear to fix the problem. – user838568 Jul 12 '11 at 9:19
Formulas need to have their cached values calculated (evaluated) too, whether XSSF, SXSSF or HSSF – Gagravarr Jul 12 '11 at 10:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.