From d2b6d42194078abc03b87b72b5ff06bbe61d4fee Mon Sep 17 00:00:00 2001 From: Glen Stampoultzis Date: Fri, 5 Apr 2002 12:54:46 +0000 Subject: [PATCH] I wasn't really ready to commit these but since the others got commited by ant we now have broken links so this fixed that. git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352323 13f79535-47bb-0310-9956-ffa450edef68 --- build/jakarta-poi/docs/hssf/alternatives.html | 230 +++++++ build/jakarta-poi/docs/hssf/quick-guide.html | 597 ++++++++++++++++++ 2 files changed, 827 insertions(+) create mode 100644 build/jakarta-poi/docs/hssf/alternatives.html create mode 100644 build/jakarta-poi/docs/hssf/quick-guide.html diff --git a/build/jakarta-poi/docs/hssf/alternatives.html b/build/jakarta-poi/docs/hssf/alternatives.html new file mode 100644 index 0000000000..98fbb79007 --- /dev/null +++ b/build/jakarta-poi/docs/hssf/alternatives.html @@ -0,0 +1,230 @@ + + + + + + + + + + + +
+www.apache.org >  + jakarta.apache.org >  + +
+ + + + +
+ +
+ + + + + + + +
How do I...?
+
Learn more about this project?
+
Print this page...
+
Troubleshoot...
+
+
+
+
+ + + + +
+
+   +   +   + web site mail lists +
+
+
+

HSSF

+Alternatives to HSSF +
+ +

+ +

+
+ +
+ + + + + + + +
Alternatives
+
+ +

+ Maybe it's unwise to advertise your competitors but we believe + competition is good and we have the best support reading and + write Excel workbooks currently available. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ProductURLDescription
Formula One + www.tidestone.com + An alternative to this project is to + buy the $10,000 Formula 1 library + and accept its crude api and limitations.
Visual Basic + www.microsoft.com + Give up XML and write Visual Basic code on a Microsoft Windows based + Environment or output in Microsoft's beta and primarily undocumented + XML for office format.
JExcelhttp://stareyes.homeip.net:8888Frequently unavailable. Little currently known about it's capabilities.
JWorkbookhttp://www.object-refinery.com/jworkbook/index.htmlThis effort supports Gnumeric and Excel, however the Excel part is done using POI anyway.
xlReaderhttp://www.sourceforge.net/projects/xlrdProvides decent support for reading Excel.
Excel ODBC Driverhttp://www.nwlink.com/~leewal/content/exceljavasample.htmODBC offers a somewhat wierd method for using Excel.
ExtenXLShttp://www.extentech.com/products/ExtenXLS/docs/intro3.jspCommercial library for reading, modifying and writing Excel spreadsheets. Not cheap but + certainly a lot more affordable than Formula 1. No idea as to it's quality.
J-Integra Java-Excel Bridgehttp://www.intrinsyc.com/products/bridging/jintegra.aspUses DCOM to an Excel instance on a windows machine.
Perl & C-There are a number of perl and C libraries, however none of them are consistent.
+ +
+
+
+ +
+ + + diff --git a/build/jakarta-poi/docs/hssf/quick-guide.html b/build/jakarta-poi/docs/hssf/quick-guide.html new file mode 100644 index 0000000000..f053d86d29 --- /dev/null +++ b/build/jakarta-poi/docs/hssf/quick-guide.html @@ -0,0 +1,597 @@ + + + + + + + + + + + +
+www.apache.org >  + jakarta.apache.org >  + +
+ + + + +
+ +
+ + + + + + + +
How do I...?
+
Learn more about this project?
+
Print this page...
+
Troubleshoot...
+
+
+
+
+ + + + +
+
+   +   +   + web site mail lists +
+
+
+

Quick Guide to HSSF Features

+ +

+ +

+
+ +
+ + + + + + + +
Quick Guide to Features
+
+ +

+ Want to use HSSF read and write spreadsheets in a hurry? This guide is for you. If you're after + more in-depth coverage of the HSSF user-API please consult the HOWTO + guide as it contains actual descriptions of how to use this stuff. +

+ + +
+ +
+ + + + + + + +
Features
+
+ + + +

New Workbook

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

New Sheet

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet1 = wb.createSheet("new sheet");
+    HSSFSheet sheet2 = wb.createSheet("second sheet");
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Creating Cells

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    // Create a row and put some cells in it. Rows are 0 based.
+    HSSFRow row = sheet.createRow((short)0);
+    // Create a cell and put a value in it.
+    HSSFCell cell = row.createCell((short)0);
+    cell.setCellValue(1);
+
+    // Or do it on one line.
+    row.createCell((short)1).setCellValue(1.2);
+    row.createCell((short)2).setCellValue("This is a string");
+    row.createCell((short)3).setCellValue(true);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Creating Date Cells

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    // Create a row and put some cells in it. Rows are 0 based.
+    HSSFRow row = sheet.createRow((short)0);
+
+    // Create a cell and put a date value in it.  The first cell is not styled
+    // as a date.
+    HSSFCell cell = row.createCell((short)0);
+    cell.setCellValue(new Date());
+
+    // we style the second cell as a date (and time).  It is important to
+    // create a new cell style from the workbook otherwise you can end up
+    // modifying the built in style and effecting not only this cell but other cells.
+    HSSFCellStyle cellStyle = wb.createCellStyle();
+    cellStyle.setDataFormat(HSSFDataFormat.getFormat("m/d/yy h:mm"));
+    cell = row.createCell((short)1);
+    cell.setCellValue(new Date());
+    cell.setCellStyle(cellStyle);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Working with different types of cells

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+    HSSFRow row = sheet.createRow((short)2);
+    row.createCell((short) 0).setCellValue(1.1);
+    row.createCell((short) 1).setCellValue(new Date());
+    row.createCell((short) 2).setCellValue("a string");
+    row.createCell((short) 3).setCellValue(true);
+    row.createCell((short) 4).setCellType(HSSFCell.CELL_TYPE_ERROR);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Demonstrates various alignment options

+ +
+ + + + +
+
+    public static void main(String[] args)
+            throws IOException
+    {
+        HSSFWorkbook wb = new HSSFWorkbook();
+        HSSFSheet sheet = wb.createSheet("new sheet");
+        HSSFRow row = sheet.createRow((short) 2);
+        createCell(wb, row, (short) 0, HSSFCellStyle.ALIGN_CENTER);
+        createCell(wb, row, (short) 1, HSSFCellStyle.ALIGN_CENTER_SELECTION);
+        createCell(wb, row, (short) 2, HSSFCellStyle.ALIGN_FILL);
+        createCell(wb, row, (short) 3, HSSFCellStyle.ALIGN_GENERAL);
+        createCell(wb, row, (short) 4, HSSFCellStyle.ALIGN_JUSTIFY);
+        createCell(wb, row, (short) 5, HSSFCellStyle.ALIGN_LEFT);
+        createCell(wb, row, (short) 6, HSSFCellStyle.ALIGN_RIGHT);
+
+        // Write the output to a file
+        FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+        wb.write(fileOut);
+        fileOut.close();
+
+    }
+
+    /**
+     * Creates a cell and aligns it a certain way.
+     *
+     * @param wb        the workbook
+     * @param row       the row to create the cell in
+     * @param column    the column number to create the cell in
+     * @param align     the alignment for the cell.
+     */
+    private static void createCell(HSSFWorkbook wb, HSSFRow row, short column, short align)
+    {
+        HSSFCell cell = row.createCell(column);
+        cell.setCellValue("Align It");
+        HSSFCellStyle cellStyle = wb.createCellStyle();
+        cellStyle.setAlignment(align);
+        cell.setCellStyle(cellStyle);
+    }
+                    
+
+
+ + + + +

Working with borders

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    // Create a row and put some cells in it. Rows are 0 based.
+    HSSFRow row = sheet.createRow((short) 1);
+
+    // Create a cell and put a value in it.
+    HSSFCell cell = row.createCell((short) 1);
+    cell.setCellValue(4);
+
+    // Style the cell with borders all around.
+    HSSFCellStyle style = wb.createCellStyle();
+    style.setBorderBottom(HSSFCellStyle.BORDER_THIN);
+    style.setBottomBorderColor(HSSFCellStyle.BLACK);
+    style.setBorderLeft(HSSFCellStyle.BORDER_THIN);
+    style.setLeftBorderColor(HSSFCellStyle.GREEN);
+    style.setBorderRight(HSSFCellStyle.BORDER_THIN);
+    style.setRightBorderColor(HSSFCellStyle.BLUE);
+    style.setBorderTop(HSSFCellStyle.BORDER_MEDIUM_DASHED);
+    style.setTopBorderColor(HSSFCellStyle.AUTOMATIC);
+    cell.setCellStyle(style);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Fills and colors

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    // Create a row and put some cells in it. Rows are 0 based.
+    HSSFRow row = sheet.createRow((short) 1);
+
+    // Aqua background
+    HSSFCellStyle style = wb.createCellStyle();
+    style.setFillBackgroundColor(HSSFCellStyle.AQUA);
+    style.setFillPattern(HSSFCellStyle.BIG_SPOTS);
+    HSSFCell cell = row.createCell((short) 1);
+    cell.setCellValue("X");
+    cell.setCellStyle(style);
+
+    // Orange "foreground", foreground being the fill foreground not the font color.
+    style = wb.createCellStyle();
+    style.setFillForegroundColor(HSSFCellStyle.ORANGE);
+    style.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
+    cell = row.createCell((short) 2);
+    cell.setCellValue("X");
+    cell.setCellStyle(style);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Merging cells

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    HSSFRow row = sheet.createRow((short) 1);
+    HSSFCell cell = row.createCell((short) 1);
+    cell.setCellValue("This is a test of merging");
+
+    sheet.addMergedRegion(new Region(1,(short)1,1,(short)2));
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Working with fonts

+ +
+ + + + +
+
+    HSSFWorkbook wb = new HSSFWorkbook();
+    HSSFSheet sheet = wb.createSheet("new sheet");
+
+    // Create a row and put some cells in it. Rows are 0 based.
+    HSSFRow row = sheet.createRow((short) 1);
+
+    // Create a new font and alter it.
+    HSSFFont font = wb.createFont();
+    font.setFontHeightInPoints((short)24);
+    font.setFontName("Courier New");
+    font.setItalic(true);
+    font.setStrikeout(true);
+
+    // Fonts are set into a style so create a new one to use.
+    HSSFCellStyle style = wb.createCellStyle();
+    style.setFont(font);
+
+    // Create a cell and put a value in it.
+    HSSFCell cell = row.createCell((short) 1);
+    cell.setCellValue("This is a test of fonts");
+    cell.setCellStyle(style);
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + + + +

Reading and Rewriting Workbooks

+ +
+ + + + +
+
+    POIFSFileSystem fs      =
+            new POIFSFileSystem(new FileInputStream("workbook.xls"));
+    HSSFWorkbook wb = new HSSFWorkbook(fs);
+    HSSFSheet sheet = wb.getSheetAt(0);
+    HSSFRow row = sheet.getRow(2);
+    HSSFCell cell = row.getCell((short)3);
+    if (cell == null)
+        cell = row.createCell((short)3);
+    cell.setCellType(HSSFCell.CELL_TYPE_STRING);
+    cell.setCellValue("a test");
+
+    // Write the output to a file
+    FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+    wb.write(fileOut);
+    fileOut.close();
+                    
+
+
+ + +
+
+
+ +
+
+
+ +
+ + + -- 2.39.5