我正在尝试使用以下代码创建超链接
CreationHelper createHelper = wb.getCreationHelper();
cell.setCellValue("Click Here");
Hyperlink link = createHelper.createHyperlink(Hyperlink.LINK_FILE);
File f = new File("C:\\Test\\1.pdf");
link.setAddress(f.getCanonicalPath());
cell.setHyperlink((org.apache.poi.ss.usermodel.Hyperlink) link);
它工作正常,它添加了一个Click Here
到单元格的链接
但是我如何使用相同类型的代码设置部分文本和链接,
我的意思是链接需要像,只有这里是链接your file is
here