码迷,mamicode.com
首页 > 编程语言 > 详细

用Java在excel单元格中设置超链接

时间:2019-11-14 20:22:37      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:ddr   eth   excel   www   图片   名称   help   row   导入   

(一)问题引入

  有时候我们在导入数据到excel中时可能要给某个文件或图片设置超链接,例如链接到外网或者是本地的某个目录。我们可以通过Java代码来实现,借助POI库。

(二)解决方案

  下面直接给出参考代码示例:

File file;
Workbook wb = new XSSFWorkbook(file);
Sheet sheet = wb.getSheet("sheet名称");
Row row = sheet.getRow(行号);
Cell cell = row.getCell(列号);
String name = "超链接";
cell.setCellValue(name); CreationHelper creationHelper
= workbook.getCreationHelper(); Hyperlink link = creationHelper.createHyperlink(HyperlinkType.FILE);
String url = "http://www.baidu.com"; link.setAddress(url); cell.setHyperlink(link); Font font
= workbook.createFont(); font.setColor(IndexedColors.BLUE.getIndex()); CellStyle cellStyle = workbook.createCellStyle(); cellStyle.cloneStyleFrom(cell.getCellStyle()); cellStyle.setFont(font); cell.setCellStyle(cellStyle);

 

20191114闪

用Java在excel单元格中设置超链接

标签:ddr   eth   excel   www   图片   名称   help   row   导入   

原文地址:https://www.cnblogs.com/bien94/p/11861012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!