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/read/biff/RowRecord.java
/********************************************************************* * * Copyright (C) 2001 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.read.biff; import jxl.common.Logger; import jxl.biff.IntegerHelper; import jxl.biff.RecordData; /** * A row record */ public class RowRecord extends RecordData { /** * The logger */ private static Logger logger = Logger.getLogger(RowRecord.class); /** * The number of this row */ private int rowNumber; /** * The height of this row */ private int rowHeight; /** * Flag to indicate whether this row is collapsed or not */ private boolean collapsed; /** * Indicates whether this row has an explicit default format */ private boolean defaultFormat; /** * Indicates whether the row record height matches the default font height */ private boolean matchesDefFontHeight; /** * The (default) xf index for cells on this row */ private int xfIndex; /** * The outline level of the row */ private int outlineLevel; /** * Is this the icon indicator row of a group? */ private boolean groupStart; /** * Indicates that the row is default height */ private static final int defaultHeightIndicator = 0xff; /** * Constructs this object from the raw data * * @param t the raw data */ RowRecord(Record t) { super(t); byte[] data = getRecord().getData(); rowNumber = IntegerHelper.getInt(data[0], data[1]); rowHeight = IntegerHelper.getInt(data[6], data[7]); int options = IntegerHelper.getInt(data[12], data[13], data[14], data[15]); outlineLevel = (options & 0x7); groupStart = (options & 0x10) != 0; collapsed = (options & 0x20) != 0; matchesDefFontHeight = (options & 0x40) == 0; defaultFormat = (options & 0x80) != 0; xfIndex = (options & 0x0fff0000) >> 16; } /** * Interrogates whether this row is of default height * * @return TRUE if this is set to the default height, FALSE otherwise */ boolean isDefaultHeight() { return rowHeight == defaultHeightIndicator; } /** * Interrogates this row to see whether it matches the default font height * * @return TRUE if this matches the default font height, FALSE otherwise */ public boolean matchesDefaultFontHeight() { return matchesDefFontHeight; } /** * Gets the row number * * @return the number of this row */ public int getRowNumber() { return rowNumber; } /** * Accessor for the row's outline level * * @return the row's outline level */ public int getOutlineLevel() { return outlineLevel; } /** * Accessor for row's groupStart value * * @return the row's groupStart value */ public boolean getGroupStart() { return groupStart; } /** * Gets the height of the row * * @return the row height */ public int getRowHeight() { return rowHeight; } /** * Queries whether the row is collapsed * * @return the collapsed indicator */ public boolean isCollapsed() { return collapsed; } /** * Gets the default xf index for this row * * @return the xf index */ public int getXFIndex() { return xfIndex; } /** * Queries whether the row has a specific default cell format applied * * @return the default cell format */ public boolean hasDefaultFormat() { return defaultFormat; } }
⏎ jxl/read/biff/RowRecord.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, 83292👍, 6💬
Popular Posts:
How to read XML document with DTD validation from socket connections with the socket\DelayedInput.ja.. .
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...
commons-net-1.4.1.jar is the JAR file for Apache Commons Net 1.4.1, which implements the client side...
The Jakarta-ORO Java classes are a set of text-processing Java classes that provide Perl5 compatible...