Reputation: 221
Hi i'm trying to save a string (http://www.google.com) to a my Excel file in a Hyperlink format but the string is saved as plain text.
Upvotes: 0
Views: 495
Reputation:
Try this.
HSSFHyperlink link = createHelper.createHyperlink(HSSFHyperlink.LINK_URL);
link.setAddress(Result);
Cell.setHyperlink(link);
Upvotes: 3