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/hslf/record/UserEditAtom.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.hslf.record; import java.io.IOException; import java.io.OutputStream; import java.util.Arrays; import java.util.Collections; import java.util.LinkedHashMap; import java.util.Map; import java.util.function.Supplier; import org.apache.poi.hslf.exceptions.HSLFException; import org.apache.poi.util.LittleEndian; import org.apache.poi.util.LittleEndianConsts; /** * A UserEdit Atom (type 4085). Holds information which bits of the file * were last used by powerpoint, the version of powerpoint last used etc. * * ** WARNING ** stores byte offsets from the start of the PPT stream to * other records! If you change the size of any elements before one of * these, you'll need to update the offsets! */ public final class UserEditAtom extends PositionDependentRecordAtom { public static final int LAST_VIEW_NONE = 0; public static final int LAST_VIEW_SLIDE_VIEW = 1; public static final int LAST_VIEW_OUTLINE_VIEW = 2; public static final int LAST_VIEW_NOTES = 3; private byte[] _header; private static final long _type = RecordTypes.UserEditAtom.typeID; private short unused; private int lastViewedSlideID; private int pptVersion; private int lastUserEditAtomOffset; private int persistPointersOffset; private int docPersistRef; private int maxPersistWritten; private short lastViewType; private int encryptSessionPersistIdRef = -1; // Somewhat user facing getters public int getLastViewedSlideID() { return lastViewedSlideID; } public short getLastViewType() { return lastViewType; } // Scary internal getters public int getLastUserEditAtomOffset() { return lastUserEditAtomOffset; } public int getPersistPointersOffset() { return persistPointersOffset; } public int getDocPersistRef() { return docPersistRef; } public int getMaxPersistWritten() { return maxPersistWritten; } public int getEncryptSessionPersistIdRef() { return encryptSessionPersistIdRef; } // More scary internal setters public void setLastUserEditAtomOffset(int offset) { lastUserEditAtomOffset = offset; } public void setPersistPointersOffset(int offset) { persistPointersOffset = offset; } public void setLastViewType(short type) { lastViewType=type; } public void setMaxPersistWritten(int max) { maxPersistWritten=max; } public void setEncryptSessionPersistIdRef(int id) { encryptSessionPersistIdRef=id; LittleEndian.putInt(_header,4,(id == -1 ? 28 : 32)); } /* *************** record code follows ********************** */ /** * For the UserEdit Atom */ protected UserEditAtom(byte[] source, int start, int len) { // Sanity Checking if(len < 34) { len = 34; } int offset = start; // Get the header _header = Arrays.copyOfRange(source, start, start+8); offset += 8; // Get the last viewed slide ID lastViewedSlideID = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Get the PPT version pptVersion = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Get the offset to the previous incremental save's UserEditAtom // This will be the byte offset on disk where the previous one // starts, or 0 if this is the first one lastUserEditAtomOffset = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Get the offset to the persist pointers // This will be the byte offset on disk where the preceding // PersistPtrFullBlock or PersistPtrIncrementalBlock starts persistPointersOffset = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Get the persist reference for the document persist object // Normally seems to be 1 docPersistRef = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Maximum number of persist objects written maxPersistWritten = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; // Last view type lastViewType = LittleEndian.getShort(source,offset); offset += LittleEndianConsts.SHORT_SIZE; // unused unused = LittleEndian.getShort(source,offset); offset += LittleEndianConsts.SHORT_SIZE; // There might be a few more bytes, which are a reserved field if (offset-start<len) { encryptSessionPersistIdRef = LittleEndian.getInt(source,offset); offset += LittleEndianConsts.INT_SIZE; } if(offset-start != len) { throw new HSLFException("Having invalid data in UserEditAtom: " + "len: " + len + ", offset: " + offset + ", start: " + start); } } /** * We are of type 4085 */ @Override public long getRecordType() { return _type; } /** * At write-out time, update the references to PersistPtrs and * other UserEditAtoms to point to their new positions */ @Override public void updateOtherRecordReferences(Map<Integer,Integer> oldToNewReferencesLookup) { // Look up the new positions of our preceding UserEditAtomOffset if(lastUserEditAtomOffset != 0) { Integer newLocation = oldToNewReferencesLookup.get(Integer.valueOf(lastUserEditAtomOffset)); if(newLocation == null) { throw new HSLFException("Couldn't find the new location of the UserEditAtom that used to be at " + lastUserEditAtomOffset); } lastUserEditAtomOffset = newLocation.intValue(); } // Ditto for our PersistPtr Integer newLocation = oldToNewReferencesLookup.get(Integer.valueOf(persistPointersOffset)); if(newLocation == null) { throw new HSLFException("Couldn't find the new location of the PersistPtr that used to be at " + persistPointersOffset); } persistPointersOffset = newLocation.intValue(); } /** * Write the contents of the record back, so it can be written * to disk */ @Override public void writeOut(OutputStream out) throws IOException { // Header out.write(_header); // Write out the values writeLittleEndian(lastViewedSlideID,out); writeLittleEndian(pptVersion,out); writeLittleEndian(lastUserEditAtomOffset,out); writeLittleEndian(persistPointersOffset,out); writeLittleEndian(docPersistRef,out); writeLittleEndian(maxPersistWritten,out); writeLittleEndian(lastViewType,out); writeLittleEndian(unused,out); if (encryptSessionPersistIdRef != -1) { // optional field writeLittleEndian(encryptSessionPersistIdRef,out); } } @Override public Map<String, Supplier<?>> getGenericProperties() { final Map<String, Supplier<?>> m = new LinkedHashMap<>(); m.put("lastViewedSlideID", this::getLastViewedSlideID); m.put("pptVersion", () -> pptVersion); m.put("lastUserEditAtomOffset", this::getLastUserEditAtomOffset); m.put("persistPointersOffset", this::getPersistPointersOffset); m.put("docPersistRef", this::getDocPersistRef); m.put("maxPersistWritten", this::getMaxPersistWritten); m.put("lastViewType", this::getLastViewType); m.put("encryptSessionPersistIdRef", this::getEncryptSessionPersistIdRef); return Collections.unmodifiableMap(m); } }
⏎ org/apache/poi/hslf/record/UserEditAtom.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, 34421👍, 0💬
Popular Posts:
pache Derby is an open source relational database implemented entirely in Java and available under t...
XOM™ is a new XML object model. It is an open source (LGPL), tree-based API for processing XML with ...
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
How to download and install JDK (Java Development Kit) 8? If you want to write Java applications, yo...