jxl 또는 POI에서 excel 하이퍼링크에 대한 처리가 있는지 여부
해결:
String outputFile="D:/ .xls";
try
{
Workbook wb=Workbook.getWorkbook(new File(outputFile)); //Excel
// ,
WritableWorkbook book=Workbook.createWorkbook(new File(outputFile),wb);
WritableSheet sheet=book.createSheet(" ",0); //
String[] oriSheetNames=wb.getSheetNames(); // excel sheet
for(int i=0;i<book.getNumberOfSheets();i++)
{
sheet.addCell(new Label(0,i+1,String.valueOf(i+1))); //
/**
* public WritableHyperlink(int col,int row,java.lang.String desc,WritableSheet sheet,int destcol,int destrow)
* Constructs a hyperlink to some cells within this workbook
* col - the column containing this hyperlink
* row - the row containing this hyperlink
* desc - the cell contents for this hyperlink
* sheet - the sheet containing the cells to be linked to
* destcol - the column number of the first destination linked cell
* destrow - the row number of the first destination linked cell
* */
sheet.addHyperlink(new WritableHyperlink(1,i+1,oriSheetNames[i],book.getSheet(oriSheetNames[i]),0,0));
book.write();
book.close();
wb.close();
}catch(IOException e)
{
System.out.println(" : "+e);
}
catch(BiffException e)
{
System.out.println(" : "+e);
}
catch(RowsExceededException e)
{
System.out.println(" : "+e);
}
catch(WriteException e)
{
System.out.println(" : "+e);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
개인 FLEX 지식 라이브러리 작업 노트[size=large]1、 이 방법은 TileWindows 팝업 창에 있습니다. TitleWindows의 maxWidth와 maxHeight를 지정하지 않으면 최대 값이 화면 전체에 깔립니다. 페이지의minHeigh...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.