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/CountryCode.java
/********************************************************************* * * Copyright (C) 2005 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; import jxl.common.Logger; /** * Enumeration type for the excel country codes */ public class CountryCode { /** * The logger */ private static Logger logger = Logger.getLogger(CountryCode.class); /** * The country code */ private int value; /** * The ISO 3166 two letter country mnemonic (as used by the Locale class) */ private String code; /** * The long description */ private String description; /** * The array of country codes */ private static CountryCode[] codes = new CountryCode[0]; /** * Constructor */ private CountryCode(int v, String c, String d) { value = v; code = c; description = d; CountryCode[] newcodes = new CountryCode[codes.length+1]; System.arraycopy(codes, 0, newcodes, 0, codes.length); newcodes[codes.length] = this; codes = newcodes; } /** * Constructor used to create an arbitrary code with a specified value. * Doesn't add the latest value to the static array */ private CountryCode(int v) { value = v; description = "Arbitrary"; code = "??"; } /** * Accessor for the excel value * * @return the excel value */ public int getValue() { return value; } /** * Accessor for the string * * @return the two character iso 3166 string */ public String getCode() { return code; } /** * Gets the country code for the given two character mnemonic string */ public static CountryCode getCountryCode(String s) { if (s == null || s.length() != 2) { logger.warn("Please specify two character ISO 3166 country code"); return USA; } CountryCode code = UNKNOWN; for (int i = 0 ; i < codes.length && code == UNKNOWN ; i++) { if (codes[i].code.equals(s)) { code = codes[i]; } } return code; } /** * Creates an arbitrary country code with the specified value. Used * when copying sheets, and the country code isn't initialized as part * of the static data below */ public static CountryCode createArbitraryCode(int i) { return new CountryCode(i); } // The country codes public final static CountryCode USA = new CountryCode(0x1, "US", "USA"); public final static CountryCode CANADA = new CountryCode(0x2, "CA", "Canada"); public final static CountryCode GREECE = new CountryCode(0x1e, "GR", "Greece"); public final static CountryCode NETHERLANDS = new CountryCode(0x1f, "NE", "Netherlands"); public final static CountryCode BELGIUM = new CountryCode(0x20, "BE", "Belgium"); public final static CountryCode FRANCE = new CountryCode(0x21, "FR", "France"); public final static CountryCode SPAIN = new CountryCode(0x22, "ES", "Spain"); public final static CountryCode ITALY = new CountryCode(0x27, "IT", "Italy"); public final static CountryCode SWITZERLAND = new CountryCode(0x29, "CH", "Switzerland"); public final static CountryCode UK = new CountryCode(0x2c, "UK", "United Kingdowm"); public final static CountryCode DENMARK = new CountryCode(0x2d, "DK", "Denmark"); public final static CountryCode SWEDEN = new CountryCode(0x2e, "SE", "Sweden"); public final static CountryCode NORWAY = new CountryCode(0x2f, "NO", "Norway"); public final static CountryCode GERMANY = new CountryCode(0x31, "DE", "Germany"); public final static CountryCode PHILIPPINES = new CountryCode(0x3f, "PH", "Philippines"); public final static CountryCode CHINA = new CountryCode(0x56, "CN", "China"); public final static CountryCode INDIA = new CountryCode(0x5b, "IN", "India"); public final static CountryCode UNKNOWN = new CountryCode(0xffff, "??", "Unknown"); }
⏎ jxl/biff/CountryCode.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, 46963👍, 6💬
Popular Posts:
kernel.jar is a component in iText Java library to provide low-level functionalities. iText Java lib...
maven-model-builder-3.8. 6.jaris the JAR file for Apache Maven 3.8.6 Model Builder module. Apache Ma...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
commons-lang-1.0.1.jar is the JAR file for Apache Commons Lang 1.0.1, which provides a host of helpe...