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 poi-5.2.3.jar?
What Is poi-5.2.3.jar?
✍: FYIcenter.com
poi-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio.
poi-5.2.3.jar supports Apache POI components that read and write Microsoft's OLE 2 Compound document format, which is used in early versions of Microsoft Office tools like Word 97, Excel 97, PowerPoint 97, etc.
poi-5.2.3.jar is distributed as part of the poi-bin-5.2.3-20220909.zip download file.
JAR File Size and Download Location:
JAR name: poi-5.2.3.jar Target JDK version: 9 File name: poi.jar, poi-5.2.3.jar File size: 2964641 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-5.2.3.jar:
⏎ org/apache/poi/common/usermodel/fonts/FontCharset.java
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.common.usermodel.fonts; import java.nio.charset.Charset; import java.nio.charset.UnsupportedCharsetException; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; /** * Charset represents the basic set of characters associated with a font (that it can display), and * corresponds to the ANSI codepage (8-bit or DBCS) of that character set used by a given language. * * @since POI 3.17-beta2 */ @SuppressWarnings("java:S1192") public enum FontCharset { /** Specifies the English character set. */ ANSI(0x00000000, "Cp1252"), /** * Specifies a character set based on the current system locale; * for example, when the system locale is United States English, * the default character set is ANSI_CHARSET. */ DEFAULT(0x00000001, "Cp1252"), /** Specifies a character set of symbols. */ SYMBOL(0x00000002, ""), /** Specifies the Apple Macintosh character set. */ MAC(0x0000004D, "MacRoman"), /** Specifies the Japanese character set. */ SHIFTJIS(0x00000080, "Shift_JIS"), /** Also spelled "Hangeul". Specifies the Hangul Korean character set. */ HANGUL(0x00000081, "cp949"), /** Also spelled "Johap". Specifies the Johab Korean character set. */ JOHAB(0x00000082, "x-Johab"), /** Specifies the "simplified" Chinese character set for People's Republic of China. */ GB2312(0x00000086, "GB2312"), /** * Specifies the "traditional" Chinese character set, used mostly in * Taiwan and in the Hong Kong and Macao Special Administrative Regions. */ CHINESEBIG5(0x00000088, "Big5"), /** Specifies the Greek character set. */ GREEK(0x000000A1, "Cp1253"), /** Specifies the Turkish character set. */ TURKISH(0x000000A2, "Cp1254"), /** Specifies the Vietnamese character set. */ VIETNAMESE(0x000000A3, "Cp1258"), /** Specifies the Hebrew character set. */ HEBREW(0x000000B1, "Cp1255"), /** Specifies the Arabic character set. */ ARABIC(0x000000B2, "Cp1256"), /** Specifies the Baltic (Northeastern European) character set. */ BALTIC(0x000000BA, "Cp1257"), /** Specifies the Russian Cyrillic character set. */ RUSSIAN(0x000000CC, "Cp1251"), /** Specifies the Thai character set. */ THAI(0x000000DE, "x-windows-874"), /** Specifies a Eastern European character set. */ EASTEUROPE(0x000000EE, "Cp1250"), /** * Specifies a mapping to one of the OEM code pages, * according to the current system locale setting. */ OEM(0x000000FF, "Cp1252"); private static FontCharset[] _table = new FontCharset[256]; private int nativeId; private Charset charset; static { for (FontCharset c : values()) { _table[c.getNativeId()] = c; } } FontCharset(int flag, String javaCharsetName) { this.nativeId = flag; if (javaCharsetName.length() > 0) { try { charset = Charset.forName(javaCharsetName); return; } catch (UnsupportedCharsetException e) { Logger logger = LogManager.getLogger(FontCharset.class); logger.atWarn().log("Unsupported charset: {}", javaCharsetName); } } charset = null; } /** * * @return charset for the font or <code>null</code> if there is no matching charset or * if the charset is a "default" */ public Charset getCharset() { return charset; } public int getNativeId() { return nativeId; } public static FontCharset valueOf(int value){ return (value < 0 || value >= _table.length) ? null : _table[value]; } }
⏎ org/apache/poi/common/usermodel/fonts/FontCharset.java
Or download all of them as a single archive file:
File name: poi-5.2.3-src.zip File size: 2479830 bytes Release date: 2022-09-09 Download
⇒ What Is poi-ooxml-5.2.3.jar?
⇐ What Is poi-bin-5.2.3-20220909.zip?
2017-04-04, 92871👍, 0💬
Popular Posts:
What Is ojdbc7.jar for Oracle 12c R1? ojdbc7.jar for Oracle 12c R1 is the JAR files of ojdbc.jar, JD...
pache Derby is an open source relational database implemented entirely in Java and available under t...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
What Is poi-examples-5.2.3.jar? poi-examples-5.2.3.jar is one of the JAR files for Apache POI 5.2.3,...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...