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/SortRecord.java
/********************************************************************* * * Copyright (C) 2004 Andrew Khan, Al Mantei * * 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.biff.RecordData; import jxl.biff.StringHelper; import jxl.biff.Type; /** * A storage area for the last Sort dialog box area */ public class SortRecord extends RecordData { private int col1Size; private int col2Size; private int col3Size; private String col1Name; private String col2Name; private String col3Name; private byte optionFlags; private boolean sortColumns = false; private boolean sortKey1Desc = false; private boolean sortKey2Desc = false; private boolean sortKey3Desc = false; private boolean sortCaseSensitive = false; /** * Constructs this object from the raw data * * @param r the raw data */ public SortRecord(Record r) { super(Type.SORT); byte[] data = r.getData(); optionFlags = data[0]; sortColumns = ((optionFlags & 0x01) != 0); sortKey1Desc = ((optionFlags & 0x02) != 0); sortKey2Desc = ((optionFlags & 0x04) != 0); sortKey3Desc = ((optionFlags & 0x08) != 0); sortCaseSensitive = ((optionFlags & 0x10) != 0); // data[1] contains sort list index - not implemented... col1Size = data[2]; col2Size = data[3]; col3Size = data[4]; int curPos = 5; if (data[curPos++] == 0x00) { col1Name = new String(data, curPos, col1Size); curPos += col1Size; } else { col1Name = StringHelper.getUnicodeString(data, col1Size, curPos); curPos += col1Size * 2; } if (col2Size > 0) { if (data[curPos++] == 0x00) { col2Name = new String(data, curPos, col2Size); curPos += col2Size; } else { col2Name = StringHelper.getUnicodeString(data, col2Size, curPos); curPos += col2Size * 2; } } else { col2Name = ""; } if (col3Size > 0) { if (data[curPos++] == 0x00) { col3Name = new String(data, curPos, col3Size); curPos += col3Size; } else { col3Name = StringHelper.getUnicodeString(data, col3Size, curPos); curPos += col3Size * 2; } } else { col3Name = ""; } } /** * Accessor for the 1st Sort Column Name * * @return the 1st Sort Column Name */ public String getSortCol1Name() { return col1Name; } /** * Accessor for the 2nd Sort Column Name * * @return the 2nd Sort Column Name */ public String getSortCol2Name() { return col2Name; } /** * Accessor for the 3rd Sort Column Name * * @return the 3rd Sort Column Name */ public String getSortCol3Name() { return col3Name; } /** * Accessor for the Sort by Columns flag * * @return the Sort by Columns flag */ public boolean getSortColumns() { return sortColumns; } /** * Accessor for the Sort Column 1 Descending flag * * @return the Sort Column 1 Descending flag */ public boolean getSortKey1Desc() { return sortKey1Desc; } /** * Accessor for the Sort Column 2 Descending flag * * @return the Sort Column 2 Descending flag */ public boolean getSortKey2Desc() { return sortKey2Desc; } /** * Accessor for the Sort Column 3 Descending flag * * @return the Sort Column 3 Descending flag */ public boolean getSortKey3Desc() { return sortKey3Desc; } /** * Accessor for the Sort Case Sensitivity flag * * @return the Sort Case Secsitivity flag */ public boolean getSortCaseSensitive() { return sortCaseSensitive; } }
⏎ jxl/read/biff/SortRecord.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, 82581👍, 6💬
Popular Posts:
Swingx is the SwingLabs Swing Component Extensions. JAR File Size and Download Location: File name: ...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
JDK 11 jdk.jconsole.jmod is the JMOD file for JDK 11 JConsole tool, which can be invoked by the "jco...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
JasperReports, the world's most popular open source business intelligence and reporting engine and J...