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-ooxml-5.2.3.jar?
What Is poi-ooxml-5.2.3.jar?
✍: FYIcenter.com
poi-ooxml-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-ooxml-5.2.3.jar supports Apache POI components that read and write Microsoft's Open Office XML document format, which is used in recent versions of Microsoft Office tools like Word 2007, Excel 2007, PowerPoint 2007, etc.
poi-ooxml-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-ooxml-5.2.3.jar Target JDK version: 9 Dependency: poi.jar xmlbeans.jar ooxml-schemas.jar commons-collections.jar junit.jar File name: poi-ooxml.jar, poi-ooxml-5.2.3.jar File size: 2010497 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-ooxml-5.2.3.jar:
⏎ org/apache/poi/xssf/eventusermodel/XSSFBReader.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.xssf.eventusermodel; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; import java.util.Set; import com.zaxxer.sparsebits.SparseBitSet; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.poi.openxml4j.exceptions.InvalidFormatException; import org.apache.poi.openxml4j.exceptions.OpenXML4JException; import org.apache.poi.openxml4j.opc.OPCPackage; import org.apache.poi.openxml4j.opc.PackagePart; import org.apache.poi.openxml4j.opc.PackagePartName; import org.apache.poi.openxml4j.opc.PackageRelationship; import org.apache.poi.openxml4j.opc.PackageRelationshipCollection; import org.apache.poi.openxml4j.opc.PackagingURIHelper; import org.apache.poi.util.LittleEndian; import org.apache.poi.util.LittleEndianConsts; import org.apache.poi.util.StringUtil; import org.apache.poi.xssf.binary.XSSFBCommentsTable; import org.apache.poi.xssf.binary.XSSFBParseException; import org.apache.poi.xssf.binary.XSSFBParser; import org.apache.poi.xssf.binary.XSSFBRecordType; import org.apache.poi.xssf.binary.XSSFBRelation; import org.apache.poi.xssf.binary.XSSFBStylesTable; import org.apache.poi.xssf.binary.XSSFBUtils; import org.apache.poi.xssf.model.CommentsTable; import org.apache.poi.xssf.usermodel.XSSFRelation; /** * Reader for xlsb files. * * @since 3.16-beta3 */ public class XSSFBReader extends XSSFReader { private static final Logger LOGGER = LogManager.getLogger(XSSFBReader.class); private static final Set<String> WORKSHEET_RELS = Collections.unmodifiableSet(new HashSet<>( Arrays.asList(new String[]{ XSSFRelation.WORKSHEET.getRelation(), XSSFRelation.CHARTSHEET.getRelation(), XSSFRelation.MACRO_SHEET_BIN.getRelation(), XSSFRelation.INTL_MACRO_SHEET_BIN.getRelation(), XSSFRelation.DIALOG_SHEET_BIN.getRelation() }) )); /** * Creates a new XSSFReader, for the given package * * @param pkg opc package */ public XSSFBReader(OPCPackage pkg) throws IOException, OpenXML4JException { super(pkg); } /** * In Excel 2013, the absolute path where the file was last saved may be stored in * the {@link XSSFBRecordType#BrtAbsPath15} record. The equivalent in ooxml is * <x15ac:absPath>. * * @return absolute path or <code>null</code> if it could not be found. * @throws IOException when there's a problem with the workbook part's stream */ public String getAbsPathMetadata() throws IOException { try (InputStream is = workbookPart.getInputStream()) { PathExtractor p = new PathExtractor(is); p.parse(); return p.getPath(); } } /** * Returns an Iterator which will let you get at all the * different Sheets in turn. * Each sheet's InputStream is only opened when fetched * from the Iterator. It's up to you to close the * InputStreams when done with each one. */ @Override public Iterator<InputStream> getSheetsData() throws IOException, InvalidFormatException { return new SheetIterator(workbookPart); } public XSSFBStylesTable getXSSFBStylesTable() throws IOException { ArrayList<PackagePart> parts = pkg.getPartsByContentType(XSSFBRelation.STYLES_BINARY.getContentType()); if(parts.isEmpty()) return null; // Create the Styles Table, and associate the Themes if present try (InputStream stream = parts.get(0).getInputStream()) { return new XSSFBStylesTable(stream); } } public static class SheetIterator extends XSSFReader.SheetIterator { /** * Construct a new SheetIterator * * @param wb package part holding workbook.xml */ private SheetIterator(PackagePart wb) throws IOException { super(wb); } @Override protected Set<String> getSheetRelationships() { return WORKSHEET_RELS; } @Override protected Iterator<XSSFSheetRef> createSheetIteratorFromWB(PackagePart wb) throws IOException { try (InputStream stream = wb.getInputStream()) { SheetRefLoader sheetRefLoader = new SheetRefLoader(stream); sheetRefLoader.parse(); return sheetRefLoader.getSheets().iterator(); } } /** * Not supported by XSSFBReader's SheetIterator. * Please use {@link #getXSSFBSheetComments()} instead. * @return nothing, always throws IllegalArgumentException! */ @Override public CommentsTable getSheetComments() { throw new IllegalArgumentException("Please use getXSSFBSheetComments"); } public XSSFBCommentsTable getXSSFBSheetComments() { PackagePart sheetPkg = getSheetPart(); // Do we have a comments relationship? (Only ever one if so) try { PackageRelationshipCollection commentsList = sheetPkg.getRelationshipsByType(XSSFRelation.SHEET_COMMENTS.getRelation()); if (!commentsList.isEmpty()) { PackageRelationship comments = commentsList.getRelationship(0); if (comments == null || comments.getTargetURI() == null) { return null; } PackagePartName commentsName = PackagingURIHelper.createPartName(comments.getTargetURI()); PackagePart commentsPart = sheetPkg.getPackage().getPart(commentsName); try (InputStream stream = commentsPart.getInputStream()) { return new XSSFBCommentsTable(stream); } } } catch (InvalidFormatException | IOException e) { return null; } return null; } } private static class PathExtractor extends XSSFBParser { private static SparseBitSet RECORDS = new SparseBitSet(); static { RECORDS.set(XSSFBRecordType.BrtAbsPath15.getId()); } private String path; public PathExtractor(InputStream is) { super(is, RECORDS); } @Override public void handleRecord(int recordType, byte[] data) throws XSSFBParseException { if (recordType != XSSFBRecordType.BrtAbsPath15.getId()) { return; } StringBuilder sb = new StringBuilder(); XSSFBUtils.readXLWideString(data, 0, sb); path = sb.toString(); } /** * * @return the path if found, otherwise <code>null</code> */ String getPath() { return path; } } private static class SheetRefLoader extends XSSFBParser { List<XSSFSheetRef> sheets = new LinkedList<>(); private SheetRefLoader(InputStream is) { super(is); } @Override public void handleRecord(int recordType, byte[] data) throws XSSFBParseException { if (recordType == XSSFBRecordType.BrtBundleSh.getId()) { addWorksheet(data); } } private void addWorksheet(byte[] data) { //try to parse the BrtBundleSh //if there's an exception, catch it and //try to figure out if this is one of the old beta-created xlsb files //or if this is a general exception try { tryToAddWorksheet(data); } catch (XSSFBParseException e) { if (tryOldFormat(data)) { LOGGER.atWarn().log("This file was written with a beta version of Excel. "+ "POI will try to parse the file as a regular xlsb."); } else { throw e; } } } private void tryToAddWorksheet(byte[] data) throws XSSFBParseException { int offset = 0; //this is the sheet state #2.5.142 /*long hsShtat =*/ //noinspection ResultOfMethodCallIgnored LittleEndian.getUInt(data, offset); offset += LittleEndianConsts.INT_SIZE; long iTabID = LittleEndian.getUInt(data, offset); offset += LittleEndianConsts.INT_SIZE; //according to #2.4.304 if (iTabID < 1 || iTabID > 0x0000FFFFL) { throw new XSSFBParseException("table id out of range: "+iTabID); } StringBuilder sb = new StringBuilder(); offset += XSSFBUtils.readXLWideString(data, offset, sb); String relId = sb.toString(); sb.setLength(0); /*offset +=*/ XSSFBUtils.readXLWideString(data, offset, sb); String name = sb.toString(); if (StringUtil.isNotBlank(relId)) { sheets.add(new XSSFSheetRef(relId, name)); } } private boolean tryOldFormat(byte[] data) throws XSSFBParseException { //undocumented what is contained in these 8 bytes. //for the non-beta xlsb files, this would be 4, not 8. int offset = 8; long iTabID = LittleEndian.getUInt(data, offset); offset += LittleEndianConsts.INT_SIZE; if (iTabID < 1 || iTabID > 0x0000FFFFL) { throw new XSSFBParseException("table id out of range: "+iTabID); } StringBuilder sb = new StringBuilder(); offset += XSSFBUtils.readXLWideString(data, offset, sb); String relId = sb.toString(); sb.setLength(0); offset += XSSFBUtils.readXLWideString(data, offset, sb); String name = sb.toString(); if (StringUtil.isNotBlank(relId)) { sheets.add(new XSSFSheetRef(relId, name)); } if (offset == data.length) { return true; } return false; } List<XSSFSheetRef> getSheets() { return sheets; } } }
⏎ org/apache/poi/xssf/eventusermodel/XSSFBReader.java
Or download all of them as a single archive file:
File name: poi-ooxml-5.2.3-src.zip File size: 1396572 bytes Release date: 2022-09-09 Download
⇒ What Is poi-excelant-5.2.3.jar?
2017-04-01, 38007👍, 0💬
Popular Posts:
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...
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 ...
How to download and install xml-commons External Source Package? The source package contains Java so...