📄 testhssfcell.java
字号:
/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, * if any, must include the following acknowledgment: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgment may appear in the software itself, * if and wherever such third-party acknowledgments normally appear. * * 4. The names "Apache" and "Apache Software Foundation" and * "Apache POI" must not be used to endorse or promote products * derived from this software without prior written permission. For * written permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache", * "Apache POI", nor may "Apache" appear in their name, without * prior written permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. */package org.apache.poi.hssf.usermodel;import junit.framework.TestCase;import org.apache.poi.poifs.filesystem.POIFSFileSystem;import org.apache.poi.hssf.model.Sheet;import org.apache.poi.hssf.record.Record;import org.apache.poi.hssf.record.BOFRecord;import org.apache.poi.hssf.record.EOFRecord;import org.apache.poi.hssf.util.CellReference;import org.apache.poi.hssf.util.HSSFColor;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.util.List;import java.util.Iterator;import java.util.Date;import java.util.GregorianCalendar;/** * Tests various functionity having to do with HSSFCell. For instance support for * paticular datatypes, etc. * @author Andrew C. Oliver (andy at superlinksoftware dot com) * @author Dan Sherman (dsherman at isisph.com) */public class TestHSSFCellextends TestCase { public TestHSSFCell(String s) { super(s); } /** * test that Boolean and Error types (BoolErrRecord) are supported properly. */ public void testBoolErr() throws java.io.IOException { String readFilename = System.getProperty("HSSF.testdata.path"); File file = File.createTempFile("testBoolErr",".xls"); FileOutputStream out = new FileOutputStream(file); HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet s = wb.createSheet("Sheet1"); HSSFRow r = null; HSSFCell c = null; r = s.createRow((short)0); c=r.createCell((short)1); //c.setCellType(HSSFCell.CELL_TYPE_BOOLEAN); c.setCellValue(true); c=r.createCell((short)2); //c.setCellType(HSSFCell.CELL_TYPE_BOOLEAN); c.setCellValue(false); r = s.createRow((short)1); c=r.createCell((short)1); //c.setCellType(HSSFCell.CELL_TYPE_ERROR); c.setCellErrorValue((byte)0); c=r.createCell((short)2); //c.setCellType(HSSFCell.CELL_TYPE_ERROR); c.setCellErrorValue((byte)7); wb.write(out); out.close(); assertTrue("file exists",file.exists()); FileInputStream in = new FileInputStream(file); wb = new HSSFWorkbook(in); s = wb.getSheetAt(0); r = s.getRow(0); c = r.getCell((short)1); assertTrue("boolean value 0,1 = true",c.getBooleanCellValue()); c = r.getCell((short)2); assertTrue("boolean value 0,2 = false",c.getBooleanCellValue()==false); r = s.getRow(1); c = r.getCell((short)1); assertTrue("boolean value 0,1 = 0",c.getErrorCellValue() == 0); c = r.getCell((short)2); assertTrue("boolean value 0,2 = 7",c.getErrorCellValue() == 7); in.close(); } /** * Checks that the recognition of files using 1904 date windowing * is working properly. Conversion of the date is also an issue, * but there's a separate unit test for that. */ public void testDateWindowing() throws Exception { GregorianCalendar cal = new GregorianCalendar(2000,0,1); // Jan. 1, 2000 Date date = cal.getTime(); String path = System.getProperty("HSSF.testdata.path"); // first check a file with 1900 Date Windowing String filename = path + "/1900DateWindowing.xls"; FileInputStream stream = new FileInputStream(filename); POIFSFileSystem fs = new POIFSFileSystem(stream); HSSFWorkbook workbook = new HSSFWorkbook(fs); HSSFSheet sheet = workbook.getSheetAt(0); assertEquals("Date from file using 1900 Date Windowing", date.getTime(), sheet.getRow(0).getCell((short)0) .getDateCellValue().getTime()); stream.close(); // now check a file with 1904 Date Windowing filename = path + "/1904DateWindowing.xls"; stream = new FileInputStream(filename); fs = new POIFSFileSystem(stream); workbook = new HSSFWorkbook(fs); sheet = workbook.getSheetAt(0); assertEquals("Date from file using 1904 Date Windowing", date.getTime(), sheet.getRow(0).getCell((short)0) .getDateCellValue().getTime()); stream.close(); } /** * Tests that the active cell can be correctly read and set */ public void testActiveCell() throws Exception { //read in sample String dir = System.getProperty("HSSF.testdata.path"); File sample = new File(dir + "/Simple.xls"); assertTrue("Simple.xls exists and is readable", sample.canRead()); FileInputStream fis = new FileInputStream(sample); HSSFWorkbook book = new HSSFWorkbook(fis); fis.close(); //check initial position HSSFSheet umSheet = book.getSheetAt(0); Sheet s = umSheet.getSheet(); assertEquals("Initial active cell should be in col 0", (short) 0, s.getActiveCellCol()); assertEquals("Initial active cell should be on row 1", 1, s.getActiveCellRow()); //modify position through HSSFCell HSSFCell cell = umSheet.createRow(3).createCell((short) 2); cell.setAsActiveCell(); assertEquals("After modify, active cell should be in col 2", (short) 2, s.getActiveCellCol()); assertEquals("After modify, active cell should be on row 3", 3, s.getActiveCellRow()); //write book to temp file; read and verify that position is serialized File temp = File.createTempFile("testActiveCell", ".xls"); FileOutputStream fos = new FileOutputStream(temp); book.write(fos); fos.close(); fis = new FileInputStream(temp); book = new HSSFWorkbook(fis); fis.close(); umSheet = book.getSheetAt(0); s = umSheet.getSheet(); assertEquals("After serialize, active cell should be in col 2", (short) 2, s.getActiveCellCol()); assertEquals("After serialize, active cell should be on row 3", 3, s.getActiveCellRow()); } /** * test that Cell Styles being applied to formulas remain intact */ public void testFormulaStyle() throws java.io.IOException { String readFilename = System.getProperty("HSSF.testdata.path"); File file = File.createTempFile("testFormulaStyle",".xls"); FileOutputStream out = new FileOutputStream(file); HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet s = wb.createSheet("Sheet1"); HSSFRow r = null; HSSFCell c = null; HSSFCellStyle cs = wb.createCellStyle(); HSSFFont f = wb.createFont(); f.setFontHeightInPoints((short) 20); f.setColor((short) HSSFColor.RED.index); f.setBoldweight(f.BOLDWEIGHT_BOLD); f.setFontName("Arial Unicode MS"); cs.setFillBackgroundColor((short)3); cs.setFont(f); cs.setBorderTop((short)1); cs.setBorderRight((short)1); cs.setBorderLeft((short)1); cs.setBorderBottom((short)1); r = s.createRow((short)0); c=r.createCell((short)0); c.setCellStyle(cs); c.setCellFormula("2*3"); wb.write(out); out.close(); assertTrue("file exists",file.exists()); FileInputStream in = new FileInputStream(file); wb = new HSSFWorkbook(in); s = wb.getSheetAt(0); r = s.getRow(0); c = r.getCell((short)0); assertTrue("Formula Cell at 0,0", (c.getCellType()==c.CELL_TYPE_FORMULA)); cs = c.getCellStyle(); assertNotNull("Formula Cell Style", cs); assertTrue("Font Index Matches", (cs.getFontIndex() == f.getIndex())); assertTrue("Top Border", (cs.getBorderTop() == (short)1)); assertTrue("Left Border", (cs.getBorderLeft() == (short)1)); assertTrue("Right Border", (cs.getBorderRight() == (short)1)); assertTrue("Bottom Border", (cs.getBorderBottom() == (short)1)); in.close(); } public static void main(String [] args) { System.out .println("Testing org.apache.poi.hssf.usermodel.TestHSSFCell"); junit.textui.TestRunner.run(TestHSSFCell.class); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -