http://issues.apache.org/bugzilla/show_bug.cgi?id=37923





--- Comment #7 from Jeff Merino-Ott <[EMAIL PROTECTED]>  2008-02-27 08:57:40 ---
I don't have HSSFHyperlink.  and HSSFCell doesn't have getHyperlink().

I'm using 3.0.2 final.  Is there a newer jar for me to try?

Thanks!
  jeff


(In reply to comment #6)
> Support for Excel hyperlinks is implemented.
> 
> How to read:
> 
>     HSSFSheet sheet = workbook.getSheetAt(0);
> 
>     HSSFCell cell = sheet.getRow(0).getCell((short)0);
>     HSSFHyperlink link = cell.getHyperlink();
>     if(link != null){
>         System.out.println(link.getAddress());
>     }
> 
> See also the quick guide:
> http://poi.apache.org/hssf/quick-guide.html
> 
> Yegor


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to