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-scratchpad-5.2.3.jar?
What Is poi-scratchpad-5.2.3.jar?
✍: FYIcenter.com
poi-scratchpad-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-scratchpad-5.2.3.jar provides support for older versions of Microsoft document files like Word 97, Excel 97, PowerPoint 97, etc.
poi-scratchpad-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-scratchpad-5.2.3.jar Target JDK version: 9 Dependency: poi.jar File name: poi-scratchpad.jar, poi-scratchpad-5.2.3.jar File size: 1897121 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-scratchpad-5.2.3.jar:
⏎ org/apache/poi/hwpf/model/SectionTable.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.hwpf.model; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.apache.poi.hwpf.HWPFDocument; import org.apache.poi.hwpf.model.io.HWPFFileSystem; import org.apache.poi.util.IOUtils; import org.apache.poi.util.Internal; import org.apache.poi.util.LittleEndian; import org.apache.poi.util.LittleEndianConsts; @Internal public class SectionTable { private static final Logger LOG = LogManager.getLogger(SectionTable.class); private static final int SED_SIZE = 12; protected List<SEPX> _sections = new ArrayList<>(); protected List<TextPiece> _text; /** So we can know if things are unicode or not */ //private TextPieceTable tpt; public SectionTable() { } public SectionTable( byte[] documentStream, byte[] tableStream, int offset, int size, int fcMin, TextPieceTable tpt, int mainLength) { PlexOfCps sedPlex = new PlexOfCps(tableStream, offset, size, SED_SIZE); //this.tpt = tpt; this._text = tpt.getTextPieces(); int length = sedPlex.length(); for (int x = 0; x < length; x++) { GenericPropertyNode node = sedPlex.getProperty(x); SectionDescriptor sed = new SectionDescriptor(node.getBytes(), 0); int fileOffset = sed.getFc(); // int startAt = CPtoFC(node.getStart()); // int endAt = CPtoFC(node.getEnd()); int startAt = node.getStart(); int endAt = node.getEnd(); // check for the optimization if (fileOffset == 0xffffffff) { _sections.add(new SEPX(sed, startAt, endAt, new byte[0])); } else { // The first short at the offset is the size of the grpprl. int sepxSize = LittleEndian.getShort(documentStream, fileOffset); fileOffset += LittleEndianConsts.SHORT_SIZE; byte[] buf = IOUtils.safelyClone(documentStream, fileOffset, sepxSize, HWPFDocument.getMaxRecordLength()); _sections.add(new SEPX(sed, startAt, endAt, buf)); } } // Some files seem to lie about their unicode status, which // is very very pesky. Try to work around these, but this // is getting on for black magic... boolean matchAt = false; boolean matchHalf = false; for (SEPX s : _sections) { if (s.getEnd() == mainLength) { matchAt = true; } else if (s.getEnd() == mainLength || s.getEnd() == mainLength - 1) { matchHalf = true; } } if(! matchAt && matchHalf) { LOG.atWarn().log("Your document seemed to be mostly unicode, but the section definition was in bytes! Trying anyway, but things may well go wrong!"); for(int i=0; i<_sections.size(); i++) { SEPX s = _sections.get(i); GenericPropertyNode node = sedPlex.getProperty(i); // s.setStart( CPtoFC(node.getStart()) ); // s.setEnd( CPtoFC(node.getEnd()) ); int startAt = node.getStart(); int endAt = node.getEnd(); s.setStart( startAt ); s.setEnd( endAt ); } } _sections.sort(PropertyNode.StartComparator); } public void adjustForInsert(int listIndex, int length) { int size = _sections.size(); SEPX sepx = _sections.get(listIndex); sepx.setEnd(sepx.getEnd() + length); for (int x = listIndex + 1; x < size; x++) { sepx = _sections.get(x); sepx.setStart(sepx.getStart() + length); sepx.setEnd(sepx.getEnd() + length); } } // goss version of CPtoFC - this takes into account non-contiguous textpieces // that we have come across in real world documents. Tests against the example // code in HWPFDocument show no variation to Ryan's version of the code in // normal use, but this version works with our non-contiguous test case. // So far unable to get this test case to be written out as well due to // other issues. - piers // // i'm commenting this out, because it just doesn't work with non-contiguous // textpieces :( Usual (as for PAPX and CHPX) call to TextPiecesTable does. // private int CPtoFC(int CP) // { // TextPiece TP = null; // // for(int i=_text.size()-1; i>-1; i--) // { // TP = _text.get(i); // // if(CP >= TP.getCP()) break; // } // int FC = TP.getPieceDescriptor().getFilePosition(); // int offset = CP - TP.getCP(); // if (TP.isUnicode()) { // offset = offset*2; // } // FC = FC+offset; // return FC; // } public List<SEPX> getSections() { return _sections; } @Deprecated public void writeTo( HWPFFileSystem sys, int fcMin ) throws IOException { ByteArrayOutputStream docStream = sys.getStream( "WordDocument" ); ByteArrayOutputStream tableStream = sys.getStream( "1Table" ); writeTo( docStream, tableStream ); } public void writeTo( ByteArrayOutputStream wordDocumentStream, ByteArrayOutputStream tableStream ) throws IOException { int offset = wordDocumentStream.size(); //int len = _sections.size(); PlexOfCps plex = new PlexOfCps(SED_SIZE); for (SEPX sepx : _sections) { byte[] grpprl = sepx.getGrpprl(); // write the sepx to the document stream. starts with a 2 byte size // followed by the grpprl byte[] shortBuf = new byte[2]; LittleEndian.putShort(shortBuf, 0, (short) grpprl.length); wordDocumentStream.write(shortBuf); wordDocumentStream.write(grpprl); // set the fc in the section descriptor SectionDescriptor sed = sepx.getSectionDescriptor(); sed.setFc(offset); // add the section descriptor bytes to the PlexOfCps. /* original line */ GenericPropertyNode property = new GenericPropertyNode( sepx.getStart(), sepx.getEnd(), sed.toByteArray()); /* * Line using Ryan's FCtoCP() conversion method - unable to observe * any effect on our testcases when using this code - piers */ /* * there is an effect on Bug45743.doc actually. writeoutreadback * changes byte offset of chars (but preserve string offsets). * Changing back to original lines - sergey */ // GenericPropertyNode property = new GenericPropertyNode( // tpt.getCharIndex( sepx.getStartBytes() ), // tpt.getCharIndex( sepx.getEndBytes() ), sed.toByteArray() ); plex.addProperty(property); offset = wordDocumentStream.size(); } tableStream.write(plex.toByteArray()); } }
⏎ org/apache/poi/hwpf/model/SectionTable.java
Or download all of them as a single archive file:
File name: poi-scratchpad-5.2.3-src.zip File size: 1238744 bytes Release date: 2022-09-09 Download
⇒ What Is poi-examples-5.2.3.jar?
⇐ What Is poi-excelant-5.2.3.jar?
2017-03-22, 34487👍, 0💬
Popular Posts:
JDK 11 jdk.rmic.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) Compiler Tool tool, ...
What Is jaxb-api-2.1.6.jar? Java Architecture for XML Binding (JAXB) is a Java API that allows Java ...
JDK 11 jdk.jshell.jmod is the JMOD file for JDK 11 JShell tool, which can be invoked by the "jshell"...
JDK 17 java.base.jmod is the JMOD file for JDK 17 Base module. JDK 17 Base module compiled class fil...
What is jxl.jar 2.6.12? jxl.jar 2.6.12 is the JAR file for Java Excel API 2.6.12, which is a Java li...