Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is jxl.jar 2.6.12
What is jxl.jar 2.6.12?
✍: fyicenter.com
jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12, which is a Java library for reading, writing and modifying Microsoft Excel spreadsheet files.
JAR File Size and Download Location:
JAR name: jxl-2.6.12.jar Target JDK version: 1.6 Dependency: None File name: jxl.jar File size: 725735 bytes Release date: 24-Oct-2009 Download: Java Excel API Website.
Here are Java Source Code files for jxl-2.6.12.jar:
⏎ jxl/biff/drawing/DrawingData.java
/********************************************************************* * * Copyright (C) 2004 Andrew Khan * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ***************************************************************************/ package jxl.biff.drawing; import java.util.ArrayList; import jxl.common.Assert; import jxl.common.Logger; /** * Class used to concatenate all the data for the various drawing objects * into one continuous stream */ public class DrawingData implements EscherStream { /** * The logger */ private static Logger logger = Logger.getLogger(DrawingData.class); /** * The drawing data */ private byte[] drawingData; /** * The number of drawings */ private int numDrawings; /** * Initialized flag */ private boolean initialized; /** * The spgr container. The contains the SpContainer for each drawing */ private EscherRecord[] spContainers; /** * Constructor */ public DrawingData() { numDrawings = 0; drawingData = null; initialized = false; } /** * Initialization */ private void initialize() { EscherRecordData er = new EscherRecordData(this, 0); Assert.verify(er.isContainer()); EscherContainer dgContainer = new EscherContainer(er); EscherRecord[] children = dgContainer.getChildren(); children = dgContainer.getChildren(); // Dg dg = (Dg) children[0]; EscherContainer spgrContainer = null; for (int i = 0; i < children.length && spgrContainer == null; i++) { EscherRecord child = children[i]; if (child.getType() == EscherRecordType.SPGR_CONTAINER) { spgrContainer = (EscherContainer) child; } } Assert.verify(spgrContainer != null); EscherRecord[] spgrChildren = spgrContainer.getChildren(); // See if any of the spgrChildren are SpgrContainer boolean nestedContainers = false; for (int i = 0; i < spgrChildren.length && !nestedContainers; i++) { if (spgrChildren[i].getType() == EscherRecordType.SPGR_CONTAINER) { nestedContainers = true; } } // If there are no nested containers, simply set the spContainer list // to be the list of children if (!nestedContainers) { spContainers = spgrChildren; } else { // Go through the hierarchy and dig out all the Sp containers ArrayList sps = new ArrayList(); getSpContainers(spgrContainer, sps); spContainers = new EscherRecord[sps.size()]; spContainers = (EscherRecord[]) sps.toArray(spContainers); } initialized = true; } /** * Gets the sp container from the internal data * * @param spgrContainer the spgr container * @param sps the list of sp records */ private void getSpContainers(EscherContainer spgrContainer, ArrayList sps) { EscherRecord[] spgrChildren = spgrContainer.getChildren(); for (int i = 0; i < spgrChildren.length; i++) { if (spgrChildren[i].getType() == EscherRecordType.SP_CONTAINER) { sps.add(spgrChildren[i]); } else if (spgrChildren[i].getType() == EscherRecordType.SPGR_CONTAINER) { getSpContainers((EscherContainer) spgrChildren[i], sps); } else { logger.warn("Spgr Containers contains a record other than Sp/Spgr " + "containers"); } } } /** * Adds the byte stream to the drawing data * * @param data the data to add */ public void addData(byte[] data) { addRawData(data); numDrawings++; } /** * Adds the data to the array without incrementing the drawing number. * This is used by comments, which for some bizarre and inexplicable * reason split out the data * * @param data the data to add */ public void addRawData(byte[] data) { if (drawingData == null) { drawingData = data; return; } // Resize the array byte[] newArray = new byte[drawingData.length + data.length]; System.arraycopy(drawingData, 0, newArray, 0, drawingData.length); System.arraycopy(data, 0, newArray, drawingData.length, data.length); drawingData = newArray; // Dirty up this object initialized = false; } /** * Accessor for the number of drawings * * @return the current count of drawings */ final int getNumDrawings() { return numDrawings; } /** * Gets the sp container for the specified drawing number * * @param drawingNum the drawing number for which to return the spContainer * @return the spcontainer */ EscherContainer getSpContainer(int drawingNum) { if (!initialized) { initialize(); } if ( (drawingNum + 1) >= spContainers.length) { throw new DrawingDataException(); } EscherContainer spContainer = (EscherContainer) spContainers[drawingNum + 1]; Assert.verify(spContainer != null); return spContainer; } /** * Gets the data which was read in for the drawings * * @return the drawing data */ public byte[] getData() { return drawingData; } }
⏎ jxl/biff/drawing/DrawingData.java
Or download all of them as a single archive file:
File name: jxl-2.6.12-src.zip File size: 824057 bytes Release date: 2009-10-24 Download
⇐ What Is jexcelapi_2_6_12.zip
2017-06-09, 83077👍, 6💬
Popular Posts:
How to download and install javamail-1_2.zip? The JavaMail API is a set of abstract APIs that model ...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
What Is javaws.jar in JRE (Java Runtime Environment) 8? javaws.jar in JRE (Java Runtime Environment)...
JDK 8 tools.jar is the JAR file for JDK 8 tools. It contains Java classes to support different JDK t...
JasperReports, the world's most popular open source business intelligence and reporting engine and J...