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

package org.jeecg.common.util;

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

import java.io.FileOutputStream;

public class Test {
    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");
        Hyperlink link = createHelper.createHyperlink(Hyperlink.LINK_FILE);
        cell = sheet.createRow(1).createCell((short) 5);
        cell.setCellValue("pic20210923004607.png");
        link.setAddress("pic20210923004607.png");
        cell.setHyperlink(link);
        cell.setCellStyle(hlink_style);
        FileOutputStream out = new FileOutputStream("D:/lecoo/hyperinks2.xlsx");
        wb.write(out);
        out.close();
    }
}

在这里插入图片描述

import java.io.FileOutputStream;  
        
import org.apache.poi.ss.usermodel;  
import org.apache.poi.xssf.usermodel.XSSFWorkbook;  
import org.apache.poi.ss.usermodel.IndexedColors;  
  
 
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();  
  
  }  
}  

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值