当我使用Apache POI时,我有一个要求,其中我必须在单元格中创建一个项目列表,其中每个项目都有自己的超链接。
我可以使用此link创建项目符号列表。
但我无法添加链接到列表中的每个项目。
就此提出一些帮助/意见/建议。
编辑1 :添加代码
CellStyle hlink_style = workbook.createCellStyle();
Font hlink_font = workbook.createFont();
hlink_font.setUnderline(Font.U_SINGLE);
hlink_font.setColor(IndexedColors.BLUE.getIndex());
createHelper = workbook.getCreationHelper();
link = createHelper.createHyperlink(Hyperlink.LINK_URL);
Cell cell = excelRow.createCell(1);
cell.setCellValue("abc");
link.setAddress("www.google.com");
cell.setHyperlink(link);
cell.setCellStyle(hlink_style);
谢谢, 王子