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/write/biff/LabelRecord.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.write.biff; import jxl.common.Assert; import jxl.common.Logger; import jxl.CellType; import jxl.LabelCell; import jxl.biff.FormattingRecords; import jxl.biff.IntegerHelper; import jxl.biff.Type; import jxl.format.CellFormat; /** * A label record, used for writing out string */ public abstract class LabelRecord extends CellValue { /** * The logger */ private static Logger logger = Logger.getLogger(LabelRecord.class); /** * The string */ private String contents; /** * A handle to the shared strings used within this workbook */ private SharedStrings sharedStrings; /** * The index of the string in the shared string table */ private int index; /** * Constructor used when creating a label from the user API * * @param c the column * @param cont the contents * @param r the row */ protected LabelRecord(int c, int r, String cont) { super(Type.LABELSST, c, r); contents = cont; if (contents == null) { contents=""; } } /** * Constructor used when creating a label from the API. This is * overloaded to allow formatting information to be passed to the record * * @param c the column * @param cont the contents * @param r the row * @param st the format applied to the cell */ protected LabelRecord(int c, int r, String cont, CellFormat st) { super(Type.LABELSST, c, r, st); contents = cont; if (contents == null) { contents=""; } } /** * Copy constructor * * @param c the column * @param r the row * @param nr the record to copy */ protected LabelRecord(int c, int r, LabelRecord lr) { super(Type.LABELSST, c, r, lr); contents = lr.contents; } /** * Constructor used when copying a label from a read only * spreadsheet * * @param lc the label to copy */ protected LabelRecord(LabelCell lc) { super(Type.LABELSST, lc); contents = lc.getString(); if (contents == null) { contents = ""; } } /** * Returns the content type of this cell * * @return the content type for this cell */ public CellType getType() { return CellType.LABEL; } /** * Gets the binary data for output to file * * @return the binary data */ public byte[] getData() { byte[] celldata = super.getData(); byte[] data = new byte[celldata.length + 4]; System.arraycopy(celldata, 0, data, 0, celldata.length); IntegerHelper.getFourBytes(index, data, celldata.length); return data; } /** * Quick and dirty function to return the contents of this cell as a string. * For more complex manipulation of the contents, it is necessary to cast * this interface to correct subinterface * * @return the contents of this cell as a string */ public String getContents() { return contents; } /** * Gets the label for this cell. The value returned will be the same * as for the getContents method in the base class * * @return the cell contents */ public String getString() { return contents; } /** * Sets the string contents of this cell * * @param s the new string contents */ protected void setString(String s) { if (s == null) { s = ""; } contents = s; // Don't bother doing anything if this cell has not been referenced // yet - everything will be set up in due course if (!isReferenced()) { return; } Assert.verify(sharedStrings != null); // Initalize the shared string index index = sharedStrings.getIndex(contents); // Use the sharedStrings reference instead of this object's own // handle - this means that the bespoke copy becomes eligible for // garbage collection contents = sharedStrings.get(index); } /** * Overrides the method in the base class in order to add the string * content to the shared string table, and to store its shared string * index * * @param fr the formatting records * @param ss the shared strings used within the workbook * @param s */ void setCellDetails(FormattingRecords fr, SharedStrings ss, WritableSheetImpl s) { super.setCellDetails(fr, ss, s); sharedStrings = ss; index = sharedStrings.getIndex(contents); // Use the sharedStrings reference instead of this object's own // handle - this means that the bespoke copy becomes eligible for // garbage collection contents = sharedStrings.get(index); } }
⏎ jxl/write/biff/LabelRecord.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, 83272👍, 6💬
Popular Posts:
JDK 11 java.sql.jmod is the JMOD file for JDK 11 SQL (Structured Query Language) module. JDK 11 SQL ...
ASM is an all purpose Java bytecode manipulation and analysis framework. It can be used to modify ex...
JDK 11 jdk.xml.dom.jmod is the JMOD file for JDK 11 XML DOM module. JDK 11 XML DOM module compiled c...
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...
Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. Ap...