ffhelly 2014-05-12 15:06
浏览 568
已采纳

poi操作execl如何在cell里做一个超链接访问当前路径文件夹或文件

求例子。。。

  • 写回答

1条回答 默认 最新

  • leehuat 2014-05-12 15:18
    关注

    [code="java"]
    这个是设置一个超链接弹出email地址, 其他类似
    import java.io.FileOutputStream;

    import org.apache.poi.ss.usermodel;
    import org.apache.poi.xssf.usermodel.XSSFWorkbook;
    import org.apache.poi.ss.usermodel.IndexedColors;

    /**

    • @author lance
      */
      public class HyperlinkExample {

      public static void main(String[]args) throws Exception{
      Workbook wb = new XSSFWorkbook(); //or new HSSFWorkbook();
      CreationHelper createHelper = wb.getCreationHelper();

      CellStyle hlink_style = wb.createCellStyle();
      Font hlink_font = wb.createFont();
      hlink_font.setUnderline(Font.U_SINGLE);
      hlink_font.setColor(IndexedColors.BLUE.getIndex());
      hlink_style.setFont(hlink_font);

      Cell cell;
      Sheet sheet = wb.createSheet("Hyperlinks");
      //URL
      cell = sheet.createRow(0).createCell((short)0);
      cell.setCellValue("URL Link");

      Hyperlink link = createHelper.createHyperlink(Hyperlink.LINK_URL);
      link.setAddress("http://poi.apache.org/");
      cell.setHyperlink(link);
      cell.setCellStyle(hlink_style);

      //link to a file in the current directory
      cell = sheet.createRow(1).createCell((short)0);
      cell.setCellValue("File Link");
      link = createHelper.createHyperlink(Hyperlink.LINK_FILE);
      link.setAddress("link1.xls");
      cell.setHyperlink(link);
      cell.setCellStyle(hlink_style);

      //e-mail link
      cell = sheet.createRow(2).createCell((short)0);
      cell.setCellValue("Email Link");
      link = createHelper.createHyperlink(Hyperlink.LINK_EMAIL);
      //设置路径
      link.setAddress("mailto:poi@apache.org?subject=Hyperlinks");
      cell.setHyperlink(link);
      cell.setCellStyle(hlink_style);

      //create a target sheet and cell
      Sheet sheet2 = wb.createSheet("Target Sheet");
      sheet2.createRow(0).createCell((short)0).setCellValue("Target Cell");

      cell = sheet.createRow(3).createCell((short)0);
      cell.setCellValue("Worksheet Link");
      Hyperlink link2 = createHelper.createHyperlink(Hyperlink.LINK_DOCUMENT);
      link2.setAddress("'Target Sheet'!A1");
      cell.setHyperlink(link2);
      cell.setCellStyle(hlink_style);

      FileOutputStream out = new FileOutputStream("hyperinks.xlsx");
      wb.write(out);
      out.close();

      }
      }
      [/code]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 使用C#,asp.net读取Excel文件并保存到Oracle数据库
  • ¥15 C# datagridview 单元格显示进度及值
  • ¥15 thinkphp6配合social login单点登录问题
  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配