1 <?xml version="1.0" encoding="UTF-8"?>
3 ====================================================================
4 Licensed to the Apache Software Foundation (ASF) under one or more
5 contributor license agreements. See the NOTICE file distributed with
6 this work for additional information regarding copyright ownership.
7 The ASF licenses this file to You under the Apache License, Version 2.0
8 (the "License"); you may not use this file except in compliance with
9 the License. You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ====================================================================
20 <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.1//EN" "../dtd/document-v11.dtd">
24 <title>Busy Developers' Guide to HSSF Features</title>
26 <person email="user@poi.apache.org" name="Glen Stampoultzis" id="CO"/>
27 <person email="user@poi.apache.org" name="Yegor Kozlov" id="YK"/>
31 <section><title>Busy Developers' Guide to Features</title>
33 Want to use HSSF read and write spreadsheets in a hurry? This guide is for you. If you're after
34 more in-depth coverage of the HSSF user-API please consult the <link href="how-to.html">HOWTO</link>
35 guide as it contains actual descriptions of how to use this stuff.
37 <section><title>Index of Features</title>
39 <li><link href="#NewWorkbook">How to create a new workbook</link></li>
40 <li><link href="#NewSheet">How to create a sheet</link></li>
41 <li><link href="#CreateCells">How to create cells</link></li>
42 <li><link href="#CreateDateCells">How to create date cells</link></li>
43 <li><link href="#CellTypes">Working with different types of cells</link></li>
44 <li><link href="#Iterator">Iterate over rows and cells</link></li>
45 <li><link href="#TextExtraction">Text Extraction</link></li>
46 <li><link href="#Alignment">Aligning cells</link></li>
47 <li><link href="#Borders">Working with borders</link></li>
48 <li><link href="#FrillsAndFills">Fills and color</link></li>
49 <li><link href="#MergedCells">Merging cells</link></li>
50 <li><link href="#WorkingWithFonts">Working with fonts</link></li>
51 <li><link href="#CustomColors">Custom colors</link></li>
52 <li><link href="#ReadWriteWorkbook">Reading and writing</link></li>
53 <li><link href="#NewLinesInCells">Use newlines in cells.</link></li>
54 <li><link href="#DataFormats">Create user defined data formats</link></li>
55 <li><link href="#FitTo">Fit Sheet to One Page</link></li>
56 <li><link href="#PrintArea2">Set print area for a sheet</link></li>
57 <li><link href="#FooterPageNumbers">Set page numbers on the footer of a sheet</link></li>
58 <li><link href="#ShiftRows">Shift rows</link></li>
59 <li><link href="#SelectSheet">Set a sheet as selected</link></li>
60 <li><link href="#Zoom">Set the zoom magnification for a sheet</link></li>
61 <li><link href="#Splits">Create split and freeze panes</link></li>
62 <li><link href="#Repeating">Repeating rows and columns</link></li>
63 <li><link href="#HeaderFooter">Headers and Footers</link></li>
64 <li><link href="#DrawingShapes">Drawing Shapes</link></li>
65 <li><link href="#StylingShapes">Styling Shapes</link></li>
66 <li><link href="#Graphics2d">Shapes and Graphics2d</link></li>
67 <li><link href="#Outlining">Outlining</link></li>
68 <li><link href="#Images">Images</link></li>
69 <li><link href="#NamedRanges">Named Ranges and Named Cells</link></li>
70 <li><link href="#CellComments">How to set cell comments</link></li>
71 <li><link href="#Autofit">How to adjust column width to fit the contents</link></li>
72 <li><link href="#Hyperlinks">Hyperlinks</link></li>
75 <section><title>Features</title>
76 <anchor id="NewWorkbook"/>
77 <section><title>New Workbook</title>
79 HSSFWorkbook wb = new HSSFWorkbook();
80 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
85 <anchor id="NewSheet"/>
86 <section><title>New Sheet</title>
88 HSSFWorkbook wb = new HSSFWorkbook();
89 HSSFSheet sheet1 = wb.createSheet("new sheet");
90 HSSFSheet sheet2 = wb.createSheet("second sheet");
91 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
96 <anchor id="CreateCells"/>
97 <section><title>Creating Cells</title>
99 HSSFWorkbook wb = new HSSFWorkbook();
100 HSSFSheet sheet = wb.createSheet("new sheet");
102 // Create a row and put some cells in it. Rows are 0 based.
103 HSSFRow row = sheet.createRow((short)0);
104 // Create a cell and put a value in it.
105 HSSFCell cell = row.createCell((short)0);
106 cell.setCellValue(1);
108 // Or do it on one line.
109 row.createCell((short)1).setCellValue(1.2);
110 row.createCell((short)2).setCellValue("This is a string");
111 row.createCell((short)3).setCellValue(true);
113 // Write the output to a file
114 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
119 <anchor id="CreateDateCells"/>
120 <section><title>Creating Date Cells</title>
122 HSSFWorkbook wb = new HSSFWorkbook();
123 HSSFSheet sheet = wb.createSheet("new sheet");
125 // Create a row and put some cells in it. Rows are 0 based.
126 HSSFRow row = sheet.createRow((short)0);
128 // Create a cell and put a date value in it. The first cell is not styled
130 HSSFCell cell = row.createCell((short)0);
131 cell.setCellValue(new Date());
133 // we style the second cell as a date (and time). It is important to
134 // create a new cell style from the workbook otherwise you can end up
135 // modifying the built in style and effecting not only this cell but other cells.
136 HSSFCellStyle cellStyle = wb.createCellStyle();
137 cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm"));
138 cell = row.createCell((short)1);
139 cell.setCellValue(new Date());
140 cell.setCellStyle(cellStyle);
142 // Write the output to a file
143 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
148 <anchor id="CellTypes"/>
149 <section><title>Working with different types of cells</title>
151 HSSFWorkbook wb = new HSSFWorkbook();
152 HSSFSheet sheet = wb.createSheet("new sheet");
153 HSSFRow row = sheet.createRow((short)2);
154 row.createCell((short) 0).setCellValue(1.1);
155 row.createCell((short) 1).setCellValue(new Date());
156 row.createCell((short) 2).setCellValue("a string");
157 row.createCell((short) 3).setCellValue(true);
158 row.createCell((short) 4).setCellType(HSSFCell.CELL_TYPE_ERROR);
160 // Write the output to a file
161 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
166 <anchor id="Alignment"/>
167 <section><title>Demonstrates various alignment options</title>
169 public static void main(String[] args)
172 HSSFWorkbook wb = new HSSFWorkbook();
173 HSSFSheet sheet = wb.createSheet("new sheet");
174 HSSFRow row = sheet.createRow((short) 2);
175 createCell(wb, row, (short) 0, HSSFCellStyle.ALIGN_CENTER);
176 createCell(wb, row, (short) 1, HSSFCellStyle.ALIGN_CENTER_SELECTION);
177 createCell(wb, row, (short) 2, HSSFCellStyle.ALIGN_FILL);
178 createCell(wb, row, (short) 3, HSSFCellStyle.ALIGN_GENERAL);
179 createCell(wb, row, (short) 4, HSSFCellStyle.ALIGN_JUSTIFY);
180 createCell(wb, row, (short) 5, HSSFCellStyle.ALIGN_LEFT);
181 createCell(wb, row, (short) 6, HSSFCellStyle.ALIGN_RIGHT);
183 // Write the output to a file
184 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
191 * Creates a cell and aligns it a certain way.
193 * @param wb the workbook
194 * @param row the row to create the cell in
195 * @param column the column number to create the cell in
196 * @param align the alignment for the cell.
198 private static void createCell(HSSFWorkbook wb, HSSFRow row, short column, short align)
200 HSSFCell cell = row.createCell(column);
201 cell.setCellValue("Align It");
202 HSSFCellStyle cellStyle = wb.createCellStyle();
203 cellStyle.setAlignment(align);
204 cell.setCellStyle(cellStyle);
208 <anchor id="Borders"/>
209 <section><title>Working with borders</title>
211 HSSFWorkbook wb = new HSSFWorkbook();
212 HSSFSheet sheet = wb.createSheet("new sheet");
214 // Create a row and put some cells in it. Rows are 0 based.
215 HSSFRow row = sheet.createRow((short) 1);
217 // Create a cell and put a value in it.
218 HSSFCell cell = row.createCell((short) 1);
219 cell.setCellValue(4);
221 // Style the cell with borders all around.
222 HSSFCellStyle style = wb.createCellStyle();
223 style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
224 style.setBottomBorderColor(HSSFColor.BLACK.index);
225 style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
226 style.setLeftBorderColor(HSSFColor.GREEN.index);
227 style.setBorderRight(HSSFCellStyle.BORDER_THIN);
228 style.setRightBorderColor(HSSFColor.BLUE.index);
229 style.setBorderTop(HSSFCellStyle.BORDER_MEDIUM_DASHED);
230 style.setTopBorderColor(HSSFColor.BLACK.index);
231 cell.setCellStyle(style);
233 // Write the output to a file
234 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
239 <anchor id="Iterator"/>
240 <section><title>Iterate over rows and cells</title>
241 <p>Sometimes, you'd like to just iterate over all the rows in
242 a sheet, or all the cells in a row. This is possible with
243 a simple for loop.</p>
244 <p>Luckily, this is very easy. HSSFRow defines a
245 <em>CellIterator</em> inner class to handle iterating over
246 the cells (get one with a call to <em>row.cellIterator()</em>),
247 and HSSFSheet provides a <em>rowIterator()</em> method to
248 give an iterator over all the rows.</p>
249 <p>(Unfortunately, due to the broken and
250 backwards-incompatible way that Java 5 foreach loops were
251 implemented, it isn't possible to use them on a codebase
252 that supports Java 1.4, as POI does)</p>
254 HSSFSheet sheet = wb.getSheetAt(0);
255 for (Iterator rit = sheet.rowIterator(); rit.hasNext(); ) {
256 HSSFRow row = (HSSFRow)rit.next();
257 for (Iterator cit = row.cellIterator(); cit.hasNext(); ) {
258 HSSFCell cell = (HSSFCell)cit.next();
264 HSSFSheet sheet = wb.getSheetAt(0);
265 for (Iterator<HSSFRow> rit = (Iterator<HSSFRow>)sheet.rowIterator(); rit.hasNext(); ) {
266 HSSFRow row = rit.next();
267 for (Iterator<HSSFCell> cit = (Iterator<HSSFCell>)row.cellIterator(); cit.hasNext(); ) {
268 HSSFCell cell = cit.next();
274 <section><title>Iterate over rows and cells using Java 1.5 foreach loops - OOXML Branch Only</title>
275 <p>Sometimes, you'd like to just iterate over all the rows in
276 a sheet, or all the cells in a row. If you are using Java
277 5 or later, then this is especially handy, as it'll allow the
278 new foreach loop support to work.</p>
279 <p>Luckily, this is very easy. Both HSSFSheet and HSSFRow
280 implement <em>java.lang.Iterable</em> to allow foreach
281 loops. For HSSFRow this allows access to the
282 <em>CellIterator</em> inner class to handle iterating over
283 the cells, and for HSSFSheet gives the
284 <em>rowIterator()</em> to iterator over all the rows.</p>
286 HSSFSheet sheet = wb.getSheetAt(0);
287 for (HSSFRow row : sheet.rowIterator()) {
288 for (HSSFCell cell : row.cellIterator()) {
293 <note>This only works on the OOXML branch of POI</note>
295 <anchor id="TextExtraction"/>
296 <section><title>Text Extraction</title>
297 <p>For most text extraction requirements, the standard
298 ExcelExtractor class should provide all you need.</p>
300 InputStream inp = new FileInputStream("workbook.xls");
301 HSSFWorkbook wb = new HSSFWorkbook(new POIFSFileSystem(inp));
302 ExcelExtractor extractor = new ExcelExtractor(wb);
304 extractor.setFormulasNotResults(true);
305 extractor.setIncludeSheetNames(false);
306 String text = extractor.getText();
308 <p>For very fancy text extraction, XLS to CSV etc,
310 <em>/src/scratchpad/examples/src/org/apache/poi/hssf/eventusermodel/examples/XLS2CSVmra.java</em>
313 <anchor id="FillsAndFrills"/>
314 <section><title>Fills and colors</title>
316 HSSFWorkbook wb = new HSSFWorkbook();
317 HSSFSheet sheet = wb.createSheet("new sheet");
319 // Create a row and put some cells in it. Rows are 0 based.
320 HSSFRow row = sheet.createRow((short) 1);
323 HSSFCellStyle style = wb.createCellStyle();
324 style.setFillBackgroundColor(HSSFColor.AQUA.index);
325 style.setFillPattern(HSSFCellStyle.BIG_SPOTS);
326 HSSFCell cell = row.createCell((short) 1);
327 cell.setCellValue("X");
328 cell.setCellStyle(style);
330 // Orange "foreground", foreground being the fill foreground not the font color.
331 style = wb.createCellStyle();
332 style.setFillForegroundColor(HSSFColor.ORANGE.index);
333 style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
334 cell = row.createCell((short) 2);
335 cell.setCellValue("X");
336 cell.setCellStyle(style);
338 // Write the output to a file
339 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
344 <anchor id="MergedCells"/>
345 <section><title>Merging cells</title>
347 HSSFWorkbook wb = new HSSFWorkbook();
348 HSSFSheet sheet = wb.createSheet("new sheet");
350 HSSFRow row = sheet.createRow((short) 1);
351 HSSFCell cell = row.createCell((short) 1);
352 cell.setCellValue("This is a test of merging");
354 sheet.addMergedRegion(new Region(1,(short)1,1,(short)2));
356 // Write the output to a file
357 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
362 <anchor id="WorkingWithFonts"/>
363 <section><title>Working with fonts</title>
365 HSSFWorkbook wb = new HSSFWorkbook();
366 HSSFSheet sheet = wb.createSheet("new sheet");
368 // Create a row and put some cells in it. Rows are 0 based.
369 HSSFRow row = sheet.createRow((short) 1);
371 // Create a new font and alter it.
372 HSSFFont font = wb.createFont();
373 font.setFontHeightInPoints((short)24);
374 font.setFontName("Courier New");
375 font.setItalic(true);
376 font.setStrikeout(true);
378 // Fonts are set into a style so create a new one to use.
379 HSSFCellStyle style = wb.createCellStyle();
382 // Create a cell and put a value in it.
383 HSSFCell cell = row.createCell((short) 1);
384 cell.setCellValue("This is a test of fonts");
385 cell.setCellStyle(style);
387 // Write the output to a file
388 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
393 Note, the maximum number of unique fonts in a workbook is limited to 32767 (
394 the maximum positive short). You should re-use fonts in your apllications instead of
395 creating a font for each cell.
398 <p><strong>Wrong:</strong></p>
400 for (int i = 0; i < 10000; i++) {
401 HSSFRow row = sheet.createRow(i);
402 HSSFCell cell = row.createCell((short) 0);
404 HSSFCellStyle style = workbook.createCellStyle();
405 HSSFFont font = workbook.createFont();
406 font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
408 cell.setCellStyle(style);
411 <p><strong>Correct:</strong></p>
414 HSSFCellStyle style = workbook.createCellStyle();
415 HSSFFont font = workbook.createFont();
416 font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
418 for (int i = 0; i < 10000; i++) {
419 HSSFRow row = sheet.createRow(i);
420 HSSFCell cell = row.createCell((short) 0);
421 cell.setCellStyle(style);
426 <anchor id="CustomColors"/>
427 <section><title>Custom colors</title>
429 HSSFWorkbook wb = new HSSFWorkbook();
430 HSSFSheet sheet = wb.createSheet();
431 HSSFRow row = sheet.createRow((short) 0);
432 HSSFCell cell = row.createCell((short) 0);
433 cell.setCellValue("Default Palette");
435 //apply some colors from the standard palette,
436 // as in the previous examples.
437 //we'll use red text on a lime background
439 HSSFCellStyle style = wb.createCellStyle();
440 style.setFillForegroundColor(HSSFColor.LIME.index);
441 style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
443 HSSFFont font = wb.createFont();
444 font.setColor(HSSFColor.RED.index);
447 cell.setCellStyle(style);
449 //save with the default palette
450 FileOutputStream out = new FileOutputStream("default_palette.xls");
454 //now, let's replace RED and LIME in the palette
455 // with a more attractive combination
456 // (lovingly borrowed from freebsd.org)
458 cell.setCellValue("Modified Palette");
460 //creating a custom palette for the workbook
461 HSSFPalette palette = wb.getCustomPalette();
463 //replacing the standard red with freebsd.org red
464 palette.setColorAtIndex(HSSFColor.RED.index,
465 (byte) 153, //RGB red (0-255)
466 (byte) 0, //RGB green
469 //replacing lime with freebsd.org gold
470 palette.setColorAtIndex(HSSFColor.LIME.index, (byte) 255, (byte) 204, (byte) 102);
472 //save with the modified palette
473 // note that wherever we have previously used RED or LIME, the
474 // new colors magically appear
475 out = new FileOutputStream("modified_palette.xls");
480 <anchor id="ReadWriteWorkbook"/>
481 <section><title>Reading and Rewriting Workbooks</title>
484 new POIFSFileSystem(new FileInputStream("workbook.xls"));
485 HSSFWorkbook wb = new HSSFWorkbook(fs);
486 HSSFSheet sheet = wb.getSheetAt(0);
487 HSSFRow row = sheet.getRow(2);
488 HSSFCell cell = row.getCell((short)3);
490 cell = row.createCell((short)3);
491 cell.setCellType(HSSFCell.CELL_TYPE_STRING);
492 cell.setCellValue("a test");
494 // Write the output to a file
495 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
500 <anchor id="NewLinesInCells"/>
501 <section><title>Using newlines in cells</title>
503 HSSFWorkbook wb = new HSSFWorkbook();
504 HSSFSheet s = wb.createSheet();
507 HSSFCellStyle cs = wb.createCellStyle();
508 HSSFFont f = wb.createFont();
509 HSSFFont f2 = wb.createFont();
511 cs = wb.createCellStyle();
514 //Word Wrap MUST be turned on
515 cs.setWrapText( true );
517 r = s.createRow( (short) 2 );
518 r.setHeight( (short) 0x349 );
519 c = r.createCell( (short) 2 );
520 c.setCellType( HSSFCell.CELL_TYPE_STRING );
521 c.setCellValue( "Use \n with word wrap on to create a new line" );
522 c.setCellStyle( cs );
523 s.setColumnWidth( (short) 2, (short) ( ( 50 * 8 ) / ( (double) 1 / 20 ) ) );
525 FileOutputStream fileOut = new FileOutputStream( "workbook.xls" );
527 fileOut.close();</source>
529 <anchor id="DataFormats"/>
530 <section><title>Data Formats</title>
532 HSSFWorkbook wb = new HSSFWorkbook();
533 HSSFSheet sheet = wb.createSheet("format sheet");
535 HSSFDataFormat format = wb.createDataFormat();
541 row = sheet.createRow(rowNum++);
542 cell = row.createCell(colNum);
543 cell.setCellValue(11111.25);
544 style = wb.createCellStyle();
545 style.setDataFormat(format.getFormat("0.0"));
546 cell.setCellStyle(style);
548 row = sheet.createRow(rowNum++);
549 cell = row.createCell(colNum);
550 cell.setCellValue(11111.25);
551 style = wb.createCellStyle();
552 style.setDataFormat(format.getFormat("#,##0.0000"));
553 cell.setCellStyle(style);
555 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
561 <section><title>Fit Sheet to One Page</title>
563 HSSFWorkbook wb = new HSSFWorkbook();
564 HSSFSheet sheet = wb.createSheet("format sheet");
565 HSSFPrintSetup ps = sheet.getPrintSetup();
567 sheet.setAutobreaks(true);
569 ps.setFitHeight((short)1);
570 ps.setFitWidth((short)1);
573 // Create various cells and rows for spreadsheet.
575 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
580 <anchor id="PrintArea2"/>
581 <section><title>Set Print Area</title>
583 HSSFWorkbook wb = new HSSFWorkbook();
584 HSSFSheet sheet = wb.createSheet("Sheet1");
585 wb.setPrintArea(0, "$A$1:$C$2");
586 //sets the print area for the first sheet
588 //wb.setPrintArea(0, 0, 1, 0, 0) is equivalent to using the name reference (See the JavaDocs for more details)
590 // Create various cells and rows for spreadsheet.
592 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
600 <anchor id="FooterPageNumbers"/>
601 <section><title>Set Page Numbers on Footer</title>
603 HSSFWorkbook wb = new HSSFWorkbook();
604 HSSFSheet sheet = wb.createSheet("format sheet");
605 HSSFFooter footer = sheet.getFooter()
607 footer.setRight( "Page " + HSSFFooter.page() + " of " + HSSFFooter.numPages() );
611 // Create various cells and rows for spreadsheet.
613 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
619 <anchor id="ConvenienceFunctions"/>
620 <section><title>Using the Convenience Functions</title>
622 The convenience functions live in contrib and provide
623 utility features such as setting borders around merged
624 regions and changing style attributes without explicitly
628 HSSFWorkbook wb = new HSSFWorkbook();
629 HSSFSheet sheet1 = wb.createSheet( "new sheet" );
631 // Create a merged region
632 HSSFRow row = sheet1.createRow( (short) 1 );
633 HSSFRow row2 = sheet1.createRow( (short) 2 );
634 HSSFCell cell = row.createCell( (short) 1 );
635 cell.setCellValue( "This is a test of merging" );
636 Region region = new Region( 1, (short) 1, 4, (short) 4 );
637 sheet1.addMergedRegion( region );
639 // Set the border and border colors.
640 final short borderMediumDashed = HSSFCellStyle.BORDER_MEDIUM_DASHED;
641 HSSFRegionUtil.setBorderBottom( borderMediumDashed,
642 region, sheet1, wb );
643 HSSFRegionUtil.setBorderTop( borderMediumDashed,
644 region, sheet1, wb );
645 HSSFRegionUtil.setBorderLeft( borderMediumDashed,
646 region, sheet1, wb );
647 HSSFRegionUtil.setBorderRight( borderMediumDashed,
648 region, sheet1, wb );
649 HSSFRegionUtil.setBottomBorderColor(HSSFColor.AQUA.index, region, sheet1, wb);
650 HSSFRegionUtil.setTopBorderColor(HSSFColor.AQUA.index, region, sheet1, wb);
651 HSSFRegionUtil.setLeftBorderColor(HSSFColor.AQUA.index, region, sheet1, wb);
652 HSSFRegionUtil.setRightBorderColor(HSSFColor.AQUA.index, region, sheet1, wb);
654 // Shows some usages of HSSFCellUtil
655 HSSFCellStyle style = wb.createCellStyle();
656 style.setIndention((short)4);
657 HSSFCellUtil.createCell(row, 8, "This is the value of the cell", style);
658 HSSFCell cell2 = HSSFCellUtil.createCell( row2, 8, "This is the value of the cell");
659 HSSFCellUtil.setAlignment(cell2, wb, HSSFCellStyle.ALIGN_CENTER);
661 // Write out the workbook
662 FileOutputStream fileOut = new FileOutputStream( "workbook.xls" );
668 <anchor id="ShiftRows"/>
669 <section><title>Shift rows up or down on a sheet</title>
671 HSSFWorkbook wb = new HSSFWorkbook();
672 HSSFSheet sheet = wb.createSheet("row sheet");
674 // Create various cells and rows for spreadsheet.
676 // Shift rows 6 - 11 on the spreadsheet to the top (rows 0 - 5)
677 sheet.shiftRows(5, 10, -5);
679 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
685 <anchor id="SelectSheet"/>
686 <section><title>Set a sheet as selected</title>
688 HSSFWorkbook wb = new HSSFWorkbook();
689 HSSFSheet sheet = wb.createSheet("row sheet");
690 sheet.setSelected(true);
692 // Create various cells and rows for spreadsheet.
694 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
701 <section><title>Set the zoom magnification</title>
703 The zoom is expressed as a fraction. For example to
704 express a zoom of 75% use 3 for the numerator and
705 4 for the denominator.
708 HSSFWorkbook wb = new HSSFWorkbook();
709 HSSFSheet sheet1 = wb.createSheet("new sheet");
710 sheet1.setZoom(3,4); // 75 percent magnification
711 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
717 <anchor id="Splits"/>
718 <section><title>Splits and freeze panes</title>
720 There are two types of panes you can create; freeze panes and split panes.
723 A freeze pane is split by columns and rows. You create
724 a freeze pane using the following mechanism:
727 sheet1.createFreezePane( 3, 2, 3, 2 );
730 The first two parameters are the columns and rows you
731 wish to split by. The second two parameters indicate
732 the cells that are visible in the bottom right quadrant.
736 Split pains appear differently. The split area is
737 divided into four separate work area's. The split
738 occurs at the pixel level and the user is able to
739 adjust the split by dragging it to a new position.
743 Split panes are created with the following call:
746 sheet2.createSplitPane( 2000, 2000, 0, 0, HSSFSheet.PANE_LOWER_LEFT );
750 The first parameter is the x position of the split.
751 This is in 1/20th of a point. A point in this case
752 seems to equate to a pixel. The second parameter is
753 the y position of the split. Again in 1/20th of a point.
756 The last parameter indicates which pane currently has
757 the focus. This will be one of HSSFSheet.PANE_LOWER_LEFT,
758 PANE_LOWER_RIGHT, PANE_UPPER_RIGHT or PANE_UPPER_LEFT.
761 HSSFWorkbook wb = new HSSFWorkbook();
762 HSSFSheet sheet1 = wb.createSheet("new sheet");
763 HSSFSheet sheet2 = wb.createSheet("second sheet");
764 HSSFSheet sheet3 = wb.createSheet("third sheet");
765 HSSFSheet sheet4 = wb.createSheet("fourth sheet");
767 // Freeze just one row
768 sheet1.createFreezePane( 0, 1, 0, 1 );
769 // Freeze just one column
770 sheet2.createFreezePane( 1, 0, 1, 0 );
771 // Freeze the columns and rows (forget about scrolling position of the lower right quadrant).
772 sheet3.createFreezePane( 2, 2 );
773 // Create a split with the lower left side being the active quadrant
774 sheet4.createSplitPane( 2000, 2000, 0, 0, HSSFSheet.PANE_LOWER_LEFT );
776 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
782 <anchor id="Repeating"/>
783 <section><title>Repeating rows and columns</title>
785 It's possible to set up repeating rows and columns in
786 your printouts by using the setRepeatingRowsAndColumns()
787 function in the HSSFWorkbook class.
790 This function Contains 5 parameters.
791 The first parameter is the index to the sheet (0 = first sheet).
792 The second and third parameters specify the range for the columns to repreat.
793 To stop the columns from repeating pass in -1 as the start and end column.
794 The fourth and fifth parameters specify the range for the rows to repeat.
795 To stop the columns from repeating pass in -1 as the start and end rows.
798 HSSFWorkbook wb = new HSSFWorkbook();
799 HSSFSheet sheet1 = wb.createSheet("new sheet");
800 HSSFSheet sheet2 = wb.createSheet("second sheet");
802 // Set the columns to repeat from column 0 to 2 on the first sheet
803 wb.setRepeatingRowsAndColumns(0,0,2,-1,-1);
804 // Set the the repeating rows and columns on the second sheet.
805 wb.setRepeatingRowsAndColumns(1,4,5,1,2);
807 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
812 <anchor id="HeaderFooter"/>
813 <section><title>Headers and Footers</title>
815 Example is for headers but applies directly to footers.
818 HSSFWorkbook wb = new HSSFWorkbook();
819 HSSFSheet sheet = wb.createSheet("new sheet");
821 HSSFHeader header = sheet.getHeader();
822 header.setCenter("Center Header");
823 header.setLeft("Left Header");
824 header.setRight(HSSFHeader.font("Stencil-Normal", "Italic") +
825 HSSFHeader.fontSize((short) 16) + "Right w/ Stencil-Normal Italic font and size 16");
827 FileOutputStream fileOut = new FileOutputStream("workbook.xls");
833 <anchor id="DrawingShapes"/>
834 <section><title>Drawing Shapes</title>
836 POI supports drawing shapes using the Microsoft Office
837 drawing tools. Shapes on a sheet are organized in a
838 hiearchy of groups and and shapes. The top-most shape
839 is the patriarch. This is not visisble on the sheet
840 at all. To start drawing you need to call <code>createPatriarch</code>
841 on the <code>HSSFSheet</code> class. This has the
842 effect erasing any other shape information stored
843 in that sheet. By default POI will leave shape
844 records alone in the sheet unless you make a call to
848 To create a shape you have to go through the following
852 <li>Create the patriarch.</li>
853 <li>Create an anchor to position the shape on the sheet.</li>
854 <li>Ask the patriarch to create the shape.</li>
855 <li>Set the shape type (line, oval, rectangle etc...)</li>
856 <li>Set any other style details converning the shape. (eg:
857 line thickness, etc...)</li>
860 HSSFPatriarch patriarch = sheet.createDrawingPatriarch();
861 a = new HSSFClientAnchor( 0, 0, 1023, 255, (short) 1, 0, (short) 1, 0 );
862 HSSFSimpleShape shape1 = patriarch.createSimpleShape(a1);
863 shape1.setShapeType(HSSFSimpleShape.OBJECT_TYPE_LINE);
866 Text boxes are created using a different call:
869 HSSFTextbox textbox1 = patriarch.createTextbox(
870 new HSSFClientAnchor(0,0,0,0,(short)1,1,(short)2,2));
871 textbox1.setString(new HSSFRichTextString("This is a test") );
874 It's possible to use different fonts to style parts of
875 the text in the textbox. Here's how:
878 HSSFFont font = wb.createFont();
879 font.setItalic(true);
880 font.setUnderline(HSSFFont.U_DOUBLE);
881 HSSFRichTextString string = new HSSFRichTextString("Woo!!!");
882 string.applyFont(2,5,font);
883 textbox.setString(string );
886 Just as can be done manually using Excel, it is possible
887 to group shapes together. This is done by calling
888 <code>createGroup()</code> and then creating the shapes
892 It's also possible to create groups within groups.
894 <warning>Any group you create should contain at least two
895 other shapes or subgroups.</warning>
897 Here's how to create a shape group:
900 // Create a shape group.
901 HSSFShapeGroup group = patriarch.createGroup(
902 new HSSFClientAnchor(0,0,900,200,(short)2,2,(short)2,2));
904 // Create a couple of lines in the group.
905 HSSFSimpleShape shape1 = group.createShape(new HSSFChildAnchor(3,3,500,500));
906 shape1.setShapeType(HSSFSimpleShape.OBJECT_TYPE_LINE);
907 ( (HSSFChildAnchor) shape1.getAnchor() ).setAnchor((short)3,3,500,500);
908 HSSFSimpleShape shape2 = group.createShape(new HSSFChildAnchor((short)1,200,400,600));
909 shape2.setShapeType(HSSFSimpleShape.OBJECT_TYPE_LINE);
912 If you're being observant you'll noticed that the shapes
913 that are added to the group use a new type of anchor:
914 the <code>HSSFChildAnchor</code>. What happens is that
915 the created group has it's own coordinate space for
916 shapes that are placed into it. POI defaults this to
917 (0,0,1023,255) but you are able to change it as desired.
921 myGroup.setCoordinates(10,10,20,20); // top-left, bottom-right
924 If you create a group within a group it's also going
925 to have it's own coordinate space.
929 <anchor id="StylingShapes"/>
930 <section><title>Styling Shapes</title>
932 By default shapes can look a little plain. It's possible
933 to apply different styles to the shapes however. The
934 sorts of things that can currently be done are:
937 <li>Change the fill color.</li>
938 <li>Make a shape with no fill color.</li>
939 <li>Change the thickness of the lines.</li>
940 <li>Change the style of the lines. Eg: dashed, dotted.</li>
941 <li>Change the line color.</li>
944 Here's an examples of how this is done:
947 HSSFSimpleShape s = patriarch.createSimpleShape(a);
948 s.setShapeType(HSSFSimpleShape.OBJECT_TYPE_OVAL);
949 s.setLineStyleColor(10,10,10);
950 s.setFillColor(90,10,200);
951 s.setLineWidth(HSSFShape.LINEWIDTH_ONE_PT * 3);
952 s.setLineStyle(HSSFShape.LINESTYLE_DOTSYS);
955 <anchor id="Graphics2d"/>
956 <section><title>Shapes and Graphics2d</title>
958 While the native POI shape drawing commands are the
959 recommended way to draw shapes in a shape it's sometimes
960 desirable to use a standard API for compatibility with
961 external libraries. With this in mind we created some
962 wrappers for <code>Graphics</code> and <code>Graphics2d</code>.
965 It's important to not however before continuing that
966 <code>Graphics2d</code> is a poor match to the capabilities
967 of the Microsoft Office drawing commands. The older
968 <code>Graphics</code> class offers a closer match but is
969 still a square peg in a round hole.
972 All Graphics commands are issued into an <code>HSSFShapeGroup</code>.
973 Here's how it's done:
976 a = new HSSFClientAnchor( 0, 0, 1023, 255, (short) 1, 0, (short) 1, 0 );
977 group = patriarch.createGroup( a );
978 group.setCoordinates( 0, 0, 80 * 4 , 12 * 23 );
979 float verticalPointsPerPixel = a.getAnchorHeightInPoints(sheet) / (float)Math.abs(group.getY2() - group.getY1());
980 g = new EscherGraphics( group, wb, Color.black, verticalPointsPerPixel );
981 g2d = new EscherGraphics2d( g );
982 drawChemicalStructure( g2d );
985 The first thing we do is create the group and set it's coordinates
986 to match what we plan to draw. Next we calculate a reasonable
987 fontSizeMultipler then create the EscherGraphics object.
988 Since what we really want is a <code>Graphics2d</code>
989 object we create an EscherGraphics2d object and pass in
990 the graphics object we created. Finally we call a routine
991 that draws into the EscherGraphics2d object.
994 The vertical points per pixel deserves some more explanation.
995 One of the difficulties in converting Graphics calls
996 into escher drawing calls is that Excel does not have
997 the concept of absolute pixel positions. It measures
998 it's cell widths in 'characters' and the cell heights in points.
999 Unfortunately it's not defined exactly what type of character it's
1000 measuring. Presumably this is due to the fact that the Excel will be
1001 using different fonts on different platforms or even within the same
1005 Because of this constraint we've had to implement the concept of a
1006 verticalPointsPerPixel. This the amount the font should be scaled by when
1007 you issue commands such as drawString(). To calculate this value
1008 use the follow formula:
1011 multipler = groupHeightInPoints / heightOfGroup
1014 The height of the group is calculated fairly simply by calculating the
1015 difference between the y coordinates of the bounding box of the shape. The
1016 height of the group can be calculated by using a convenience called
1017 <code>HSSFClientAnchor.getAnchorHeightInPoints()</code>.
1020 Many of the functions supported by the graphics classes
1021 are not complete. Here's some of the functions that are known
1027 <li>drawString()</li>
1030 <li>clearRect()</li>
1033 Functions that are not supported will return and log a message
1034 using the POI logging infrastructure (disabled by default).
1037 <anchor id="Outlining"/>
1039 <title>Outlining</title>
1041 Outlines are great for grouping sections of information
1042 together and can be added easily to columns and rows
1043 using the POI API. Here's how:
1046 HSSFWorkbook wb = new HSSFWorkbook();
1047 HSSFSheet sheet1 = wb.createSheet("new sheet");
1049 sheet1.groupRow( 5, 14 );
1050 sheet1.groupRow( 7, 14 );
1051 sheet1.groupRow( 16, 19 );
1053 sheet1.groupColumn( (short)4, (short)7 );
1054 sheet1.groupColumn( (short)9, (short)12 );
1055 sheet1.groupColumn( (short)10, (short)11 );
1057 FileOutputStream fileOut = new FileOutputStream(filename);
1062 To collapse (or expand) an outline use the following calls:
1065 sheet1.setRowGroupCollapsed( 7, true );
1066 sheet1.setColumnGroupCollapsed( (short)4, true );
1069 The row/column you choose should contain an already
1070 created group. It can be anywhere within the group.
1075 <anchor id="Images"/>
1077 <title>Images</title>
1079 Images are part of the drawing support. To add an image just
1080 call <code>createPicture()</code> on the drawing patriarch.
1081 At the time of writing the following types are supported:
1089 It should be noted that any existing drawings may be erased
1090 once you add a image to a sheet.
1093 // Create the drawing patriarch. This is the top level container for
1094 // all shapes. This will clear out any existing shapes for that sheet.
1095 HSSFPatriarch patriarch = sheet5.createDrawingPatriarch();
1097 HSSFClientAnchor anchor;
1098 anchor = new HSSFClientAnchor(0,0,0,255,(short)2,2,(short)4,7);
1099 anchor.setAnchorType( 2 );
1100 patriarch.createPicture(anchor, loadPicture( "src/resources/logos/logoKarmokar4.png", wb ));
1102 <p>Creating an image and setting its anchor to the actual width and height:</p>
1104 HSSFPatriarch patriarch = sheet5.createDrawingPatriarch();
1106 HSSFPicture picture = patriarch.createPicture(new HSSFClientAnchor(), loadPicture( "src/resources/logos/logoKarmokar4.png", wb ));
1111 HSSFPatriarch patriarch = sheet5.createDrawingPatriarch();
1113 HSSFPicture picture = patriarch.createPicture(new HSSFClientAnchor(), loadPicture( "src/resources/logos/logoKarmokar4.png", wb ));
1114 HSSFClientAnchor preferredSize = picture.getPreferredSize();
1115 picture.setAnchor(preferredSize);
1118 HSSFPicture.resize() works only for JPEG and PNG. Other formats are not yet supported.
1121 <p>Reading images from a workbook:</p>
1125 List lst = wb.getAllPictures();
1126 for (Iterator it = lst.iterator(); it.hasNext(); ) {
1127 HSSFPictureData pict = (HSSFPictureData)it.next();
1128 String ext = pict.suggestFileExtension();
1129 byte[] data = pict.getData();
1130 if (ext.equals("jpeg")){
1131 FileOutputStream out = new FileOutputStream("pict.jpg");
1138 <anchor id="NamedRanges"/>
1140 <title>Named Ranges and Named Cells</title>
1142 Named Range is a way to refer to a group of cells by a name. Named Cell is a
1143 degenerate case of Named Range in that the 'group of cells' contains exactly one
1144 cell. You can create as well as refer to cells in a workbook by their named range.
1145 When working with Named Ranges, the classes: org.apache.poi.hssf.util.CellReference and
1146 & org.apache.poi.hssf.util.AreaReference are used.
1149 Creating Named Range / Named Cell
1153 String sname = "TestSheet", cname = "TestName", cvalue = "TestVal";
1154 HSSFWorkbook wb = new HSSFWorkbook();
1155 HSSFSheet sheet = wb.createSheet(sname);
1156 sheet.createRow(0).createCell((short) 0).setCellValue(cvalue);
1158 // 1. create named range for a single cell using areareference
1159 HSSFName namedCell = wb.createName();
1160 namedCell.setNameName(cname);
1161 String reference = sname+"!A1:A1"; // area reference
1162 namedCell.setReference(reference);
1164 // 2. create named range for a single cell using cellreference
1165 HSSFName namedCell = wb.createName();
1166 namedCell.setNameName(cname);
1167 String reference = sname+"!A1"; // cell reference
1168 namedCell.setReference(reference);
1170 // 3. create named range for an area using AreaReference
1171 HSSFName namedCell = wb.createName();
1172 namedCell.setNameName(cname);
1173 String reference = sname+"!A1:C5"; // area reference
1174 namedCell.setReference(reference);
1178 Reading from Named Range / Named Cell
1182 String cname = "TestName";
1183 HSSFWorkbook wb = getMyWorkbook(); // retrieve workbook
1185 // retrieve the named range
1186 int namedCellIdx = wb.getNameIndex(cellName);
1187 HSSFName aNamedCell = wb.getNameAt(namedCellIdx);
1189 // retrieve the cell at the named range and test its contents
1190 AreaReference aref = new AreaReference(aNamedCell.getReference());
1191 CellReference[] crefs = aref.getAllReferencedCells();
1192 for (int i=0; i<crefs.length; i++) {
1193 HSSFSheet s = wb.getSheet(crefs[i].getSheetName());
1194 HSSFRow r = sheet.getRow(crefs[i].getRow());
1195 HSSFCell c = r.getCell(crefs[i].getCol());
1196 // extract the cell contents based on cell type etc.
1200 Reading from non-contiguous Named Ranges
1204 String cname = "TestName";
1205 HSSFWorkbook wb = getMyWorkbook(); // retrieve workbook
1207 // Retrieve the named range
1208 // Will be something like "$C$10,$D$12:$D$14";
1209 int namedCellIdx = wb.getNameIndex(cellName);
1210 HSSFName aNamedCell = wb.getNameAt(namedCellIdx);
1212 // Retrieve the cell at the named range and test its contents
1213 // Will get back one AreaReference for C10, and
1214 // another for D12 to D14
1215 AreaReference[] arefs = AreaReference.generateContiguous(aNamedCell.getReference());
1216 for (int i=0; i<arefs.length; i++) {
1217 // Only get the corners of the Area
1218 // (use arefs[i].getAllReferencedCells() to get all cells)
1219 CellReference[] crefs = arefs[i].getCells();
1220 for (int j=0; j<crefs.length; j++) {
1221 // Check it turns into real stuff
1222 HSSFSheet s = wb.getSheet(crefs[j].getSheetName());
1223 HSSFRow r = s.getRow(crefs[j].getRow());
1224 HSSFCell c = r.getCell(crefs[j].getCol());
1225 // Do something with this corner cell
1230 <anchor id="CellComments"/>
1231 <section><title>Cell Comments</title>
1233 In Excel a comment is a kind of a text shape,
1234 so inserting a comment is very similar to placing a text box in a worksheet:
1237 HSSFWorkbook wb = new HSSFWorkbook();
1238 HSSFSheet sheet = wb.createSheet("Cell comments in POI HSSF");
1240 // Create the drawing patriarch. This is the top level container for all shapes including cell comments.
1241 HSSFPatriarch patr = sheet.createDrawingPatriarch();
1243 //create a cell in row 3
1244 HSSFCell cell1 = sheet.createRow(3).createCell((short)1);
1245 cell1.setCellValue(new HSSFRichTextString("Hello, World"));
1247 //anchor defines size and position of the comment in worksheet
1248 HSSFComment comment1 = patr.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short)4, 2, (short) 6, 5));
1250 // set text in the comment
1251 comment1.setString(new HSSFRichTextString("We can set comments in POI"));
1253 //set comment author.
1254 //you can see it in the status bar when moving mouse over the commented cell
1255 comment1.setAuthor("Apache Software Foundation");
1257 // The first way to assign comment to a cell is via HSSFCell.setCellComment method
1258 cell1.setCellComment(comment1);
1260 //create another cell in row 6
1261 HSSFCell cell2 = sheet.createRow(6).createCell((short)1);
1262 cell2.setCellValue(36.6);
1265 HSSFComment comment2 = patr.createComment(new HSSFClientAnchor(0, 0, 0, 0, (short)4, 8, (short) 6, 11));
1266 //modify background color of the comment
1267 comment2.setFillColor(204, 236, 255);
1269 HSSFRichTextString string = new HSSFRichTextString("Normal body temperature");
1271 //apply custom font to the text in the comment
1272 HSSFFont font = wb.createFont();
1273 font.setFontName("Arial");
1274 font.setFontHeightInPoints((short)10);
1275 font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
1276 font.setColor(HSSFColor.RED.index);
1277 string.applyFont(font);
1279 comment2.setString(string);
1280 //by default comments are hidden. This one is always visible.
1281 comment2.setVisible(true);
1283 comment2.setAuthor("Bill Gates");
1286 * The second way to assign comment to a cell is to implicitly specify its row and column.
1287 * Note, it is possible to set row and column of a non-existing cell.
1288 * It works, the commnet is visible.
1291 comment2.setColumn((short)1);
1293 FileOutputStream out = new FileOutputStream("poi_comment.xls");
1298 Reading cell comments
1301 HSSFCell cell = sheet.get(3).getColumn((short)1);
1302 HSSFComment comment = cell.getCellComment();
1303 if (comment != null) {
1304 HSSFRichTextString str = comment.getString();
1305 String author = comment.getAuthor();
1307 // alternatively you can retrieve cell comments by (row, column)
1308 comment = sheet.getCellComment(3, 1);
1311 <anchor id="Autofit"/>
1312 <section><title>Adjust column width to fit the contents</title>
1314 HSSFSheet sheet = workbook.getSheetAt(0);
1315 sheet.autoSizeColumn((short)0); //adjust width of the first column
1316 sheet.autoSizeColumn((short)1); //adjust width of the second column
1319 To calculate column width HSSFSheet.autoSizeColumn uses Java2D classes
1320 that throw exception if graphical environment is not available. In case if graphical environment
1321 is not available, you must tell Java that you are running in headless mode and
1322 set the following system property: <code> java.awt.headless=true </code>
1323 (either via <code>-Djava.awt.headless=true</code> startup parameter or via <code>System.setProperty("java.awt.headless", "true")</code>).
1326 <anchor id="Hyperlinks"/>
1327 <section><title>How to read hyperlinks</title>
1329 HSSFSheet sheet = workbook.getSheetAt(0);
1331 HSSFCell cell = sheet.getRow(0).getCell((short)0);
1332 HSSFHyperlink link = cell.getHyperlink();
1334 System.out.println(link.getAddress());
1338 <section><title>How to create hyperlinks</title>
1340 HSSFWorkbook wb = new HSSFWorkbook();
1342 //cell style for hyperlinks
1343 //by default hypelrinks are blue and underlined
1344 HSSFCellStyle hlink_style = wb.createCellStyle();
1345 HSSFFont hlink_font = wb.createFont();
1346 hlink_font.setUnderline(HSSFFont.U_SINGLE);
1347 hlink_font.setColor(HSSFColor.BLUE.index);
1348 hlink_style.setFont(hlink_font);
1351 HSSFSheet sheet = wb.createSheet("Hyperlinks");
1354 cell = sheet.createRow(0).createCell((short)0);
1355 cell.setCellValue("URL Link");
1356 HSSFHyperlink link = new HSSFHyperlink(HSSFHyperlink.LINK_URL);
1357 link.setAddress("http://poi.apache.org/");
1358 cell.setHyperlink(link);
1359 cell.setCellStyle(hlink_style);
1361 //link to a file in the current directory
1362 cell = sheet.createRow(1).createCell((short)0);
1363 cell.setCellValue("File Link");
1364 link = new HSSFHyperlink(HSSFHyperlink.LINK_FILE);
1365 link.setAddress("link1.xls");
1366 cell.setHyperlink(link);
1367 cell.setCellStyle(hlink_style);
1370 cell = sheet.createRow(2).createCell((short)0);
1371 cell.setCellValue("Email Link");
1372 link = new HSSFHyperlink(HSSFHyperlink.LINK_EMAIL);
1373 //note, if subject contains white spaces, make sure they are url-encoded
1374 link.setAddress("mailto:poi@apache.org?subject=Hyperlinks");
1375 cell.setHyperlink(link);
1376 cell.setCellStyle(hlink_style);
1378 //link to a place in this workbook
1380 //create a target sheet and cell
1381 HSSFSheet sheet2 = wb.createSheet("Target Sheet");
1382 sheet2.createRow(0).createCell((short)0).setCellValue("Target Cell");
1384 cell = sheet.createRow(3).createCell((short)0);
1385 cell.setCellValue("Worksheet Link");
1386 link = new HSSFHyperlink(HSSFHyperlink.LINK_DOCUMENT);
1387 link.setAddress("'Target Sheet'!A1");
1388 cell.setHyperlink(link);
1389 cell.setCellStyle(hlink_style);
1391 FileOutputStream out = new FileOutputStream("hssf-links.xls");