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/DateTime.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; import java.util.Date; import jxl.DateCell; import jxl.format.CellFormat; import jxl.write.biff.DateRecord; /** * A Date which may be created on the fly by a user application and added to a * spreadsheet * * NOTE: By default, all dates will have local timezone information added to * their UTC value. If this is not desired (eg. if the date entered * represents an interval eg. 9.83s for the 100m world record, then use * the overloaded constructor which indicate that the date passed in was * created under the GMT timezone. It is important that when the date * was created, an instruction like * Calendar.setTimeZone(TimeZone.getTimeZone("GMT")) * was made prior to that */ public class DateTime extends DateRecord implements WritableCell, DateCell { /** * Instance variable for dummy variable overload */ public static final GMTDate GMT = new GMTDate(); /** * Constructor. The date will be displayed with date and time components * using the default date format * * @param c the column * @param r the row * @param d the date */ public DateTime(int c, int r, Date d) { super(c, r, d); } /** * Constructor, which adjusts the specified date to take timezone * considerations into account. The date passed in will be displayed with * date and time components using the default date format * * @param c the column * @param r the row * @param d the date * @param a dummy overload */ public DateTime(int c, int r, Date d, GMTDate a) { super(c, r, d, a); } /** * Constructor which takes the format for this cell * * @param c the column * @param r the row * @param st the format * @param d the date */ public DateTime(int c, int r, Date d, CellFormat st) { super(c, r, d, st); } /** * Constructor, which adjusts the specified date to take timezone * considerations into account * * @param c the column * @param r the row * @param d the date * @param st the cell format * @param a the cummy overload */ public DateTime(int c, int r, Date d, CellFormat st, GMTDate a) { super(c, r, d, st, a); } /** * Constructor which takes the format for the cell and an indicator * as to whether this cell is a full date time or purely just a time * eg. if the spreadsheet is to contain the world record for 100m, then the * value would be 9.83s, which would be indicated as just a time * * @param c the column * @param r the row * @param st the style * @param tim flag indicating that this represents a time * @param d the date */ public DateTime(int c, int r, Date d, CellFormat st, boolean tim) { super(c, r, d, st, tim); } /** * A constructor called by the worksheet when creating a writable version * of a spreadsheet that has been read in * * @param dc the date to copy */ public DateTime(DateCell dc) { super(dc); } /** * Copy constructor used for deep copying * * @param col the column * @param row the row * @param dt the date to copy */ protected DateTime(int col, int row, DateTime dt) { super(col, row, dt); } /** * Sets the date for this cell * * @param d the date */ public void setDate(Date d) { super.setDate(d); } /** * Sets the date for this cell, performing the necessary timezone adjustments * * @param d the date * @param a the dummy overload */ public void setDate(Date d, GMTDate a) { super.setDate(d, a); } /** * Implementation of the deep copy function * * @param col the column which the new cell will occupy * @param row the row which the new cell will occupy * @return a copy of this cell, which can then be added to the sheet */ public WritableCell copyTo(int col, int row) { return new DateTime(col, row, this); } }
⏎ jxl/write/DateTime.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, 93032👍, 6💬
Popular Posts:
How to read XML document from socket connections with the socket\DelayedInput.java provided in the A...
Saxon-HE (home edition) is an open source product available under the Mozilla Public License. It pro...
JDK 11 java.security.jgss.jmod is the JMOD file for JDK 11 Security JGSS (Java Generic Security Serv...
JDK 11 jdk.crypto.cryptoki.jmod is the JMOD file for JDK 11 Crypto Cryptoki module. JDK 11 Crypto KI...
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...