Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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/hssf/record/FormatRecord.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.hssf.record;
import java.util.Arrays;
import java.util.Map;
import java.util.function.Supplier;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.apache.poi.hssf.model.InternalWorkbook;
import org.apache.poi.util.GenericRecordUtil;
import org.apache.poi.util.LittleEndianConsts;
import org.apache.poi.util.LittleEndianOutput;
import org.apache.poi.util.StringUtil;
import static org.apache.logging.log4j.util.Unbox.box;
/**
* Describes a number format -- those goofy strings like $(#,###)
*/
public final class FormatRecord extends StandardRecord {
private static final Logger LOG = LogManager.getLogger(FormatRecord.class);
public static final short sid = 0x041E;
private final int field_1_index_code;
private final boolean field_3_hasMultibyte;
private final String field_4_formatstring;
private FormatRecord(FormatRecord other) {
super(other);
field_1_index_code = other.field_1_index_code;
field_3_hasMultibyte = other.field_3_hasMultibyte;
field_4_formatstring = other.field_4_formatstring;
}
public FormatRecord(int indexCode, String fs) {
field_1_index_code = indexCode;
field_4_formatstring = fs;
field_3_hasMultibyte = StringUtil.hasMultibyte(fs);
}
public FormatRecord(RecordInputStream in) {
field_1_index_code = in.readShort();
int field_3_unicode_len = in.readUShort();
field_3_hasMultibyte = (in.readByte() & 0x01) != 0;
if (field_3_hasMultibyte) {
field_4_formatstring = readStringCommon(in, field_3_unicode_len, false);
} else {
field_4_formatstring = readStringCommon(in, field_3_unicode_len, true);
}
}
/**
* get the format index code (for built in formats)
*
* @return the format index code
* @see InternalWorkbook
*/
public int getIndexCode() {
return field_1_index_code;
}
/**
* get the format string
*
* @return the format string
*/
public String getFormatString() {
return field_4_formatstring;
}
public void serialize(LittleEndianOutput out) {
String formatString = getFormatString();
out.writeShort(getIndexCode());
out.writeShort(formatString.length());
out.writeByte(field_3_hasMultibyte ? 0x01 : 0x00);
if ( field_3_hasMultibyte ) {
StringUtil.putUnicodeLE( formatString, out);
} else {
StringUtil.putCompressedUnicode( formatString, out);
}
}
protected int getDataSize() {
return 5 // 2 shorts + 1 byte
+ getFormatString().length() * (field_3_hasMultibyte ? 2 : 1);
}
public short getSid() {
return sid;
}
@Override
public FormatRecord copy() {
return new FormatRecord(this);
}
private static String readStringCommon(RecordInputStream ris, int requestedLength, boolean pIsCompressedEncoding) {
//custom copy of ris.readUnicodeLEString to allow for extra bytes at the end
// Sanity check to detect garbage string lengths
if (requestedLength < 0 || requestedLength > 0x100000) { // 16 million chars?
throw new IllegalArgumentException("Bad requested string length (" + requestedLength + ")");
}
char[] buf;
int availableChars = pIsCompressedEncoding ? ris.remaining() : ris.remaining() / LittleEndianConsts.SHORT_SIZE;
//everything worked out. Great!
if (requestedLength == availableChars) {
buf = new char[requestedLength];
} else {
//sometimes in older Excel 97 .xls files,
//the requested length is wrong.
//Read all available characters.
buf = new char[availableChars];
}
for (int i = 0; i < buf.length; i++) {
char ch;
if (pIsCompressedEncoding) {
ch = (char) ris.readUByte();
} else {
ch = (char) ris.readShort();
}
buf[i] = ch;
}
//TIKA-2154's file shows that even in a unicode string
//there can be a remaining byte (without proper final '00')
//that should be read as a byte
if (ris.available() == 1) {
char[] tmp = Arrays.copyOf(buf, buf.length+1);
tmp[buf.length] = (char)ris.readUByte();
buf = tmp;
}
if (ris.available() > 0) {
LOG.atInfo().log("FormatRecord has {} unexplained bytes. Silently skipping", box(ris.available()));
//swallow what's left
while (ris.available() > 0) {
ris.readByte();
}
}
return new String(buf);
}
@Override
public HSSFRecordTypes getGenericRecordType() {
return HSSFRecordTypes.FORMAT;
}
@Override
public Map<String, Supplier<?>> getGenericProperties() {
return GenericRecordUtil.getGenericProperties(
"indexCode", this::getIndexCode,
"unicode", () -> field_3_hasMultibyte,
"formatString", this::getFormatString
);
}
}
⏎ org/apache/poi/hssf/record/FormatRecord.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, ≈282🔥, 0💬
Popular Posts:
maven-settings-builder-3 .8.6.jaris the JAR file for Apache Maven 3.8.6 Settings Builder module. Apa...
Apache Log4j 1.2 Bridge allows applications coded to use Log4j 1.2 API to use Log4j 2 instead. Bytec...
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...
How to download and install JDK (Java Development Kit) 5? If you want to write Java applications, yo...
JBrowser Source Code Files are provided in the source package file. You can download JBrowser source...