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/TextPiece.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.nio.charset.Charset; import org.apache.poi.hwpf.util.DoubleByteUtil; import org.apache.poi.util.Internal; import org.apache.poi.util.StringUtil; /** * Lightweight representation of a text piece. * Works in the character domain, not the byte domain, so you * need to have turned byte references into character * references before getting here. */ @Internal public class TextPiece extends PropertyNode<TextPiece> { private final boolean _usesUnicode; private final PieceDescriptor _pd; public TextPiece(TextPiece other) { super(other); _usesUnicode = other._usesUnicode; _pd = (other._pd == null) ? null : other._pd.copy(); } /** * @param start Beginning offset in main document stream, in characters. * @param end Ending offset in main document stream, in characters. * @param text The raw bytes of our text * instead */ public TextPiece(int start, int end, byte[] text, PieceDescriptor pd, int cpStart) { this(start, end, text, pd); } /** * @param start Beginning offset in main document stream, in characters. * @param end Ending offset in main document stream, in characters. * @param text The raw bytes of our text */ public TextPiece(int start, int end, byte[] text, PieceDescriptor pd) { super(start, end, buildInitSB(text, pd)); _usesUnicode = pd.isUnicode(); _pd = pd; // Validate int textLength = ((CharSequence) _buf).length(); if (end - start != textLength) { throw new IllegalStateException("Told we're for characters " + start + " -> " + end + ", but actually covers " + textLength + " characters!"); } if (end < start) { throw new IllegalStateException("Told we're of negative size! start=" + start + " end=" + end); } } /** * Create the StringBuilder from the text and unicode flag */ private static StringBuilder buildInitSB(byte[] text, PieceDescriptor pd) { if (DoubleByteUtil.BIG5.equals(pd.getCharset())) { return new StringBuilder(DoubleByteUtil.cp950ToString(text, 0, text.length)); } String str = new String(text, 0, text.length, (pd.isUnicode()) ? StringUtil.UTF16LE : pd.getCharset()); return new StringBuilder(str); } /** * @return If this text piece is unicode */ public boolean isUnicode() { return _usesUnicode; } public PieceDescriptor getPieceDescriptor() { return _pd; } @Deprecated public StringBuffer getStringBuffer() { return new StringBuffer(getStringBuilder()); } public StringBuilder getStringBuilder() { return (StringBuilder) _buf; } public byte[] getRawBytes() { return _buf.toString().getBytes( Charset.forName(_usesUnicode ? "UTF-16LE" : "Cp1252") ); } /** * Returns part of the string. * Works only in characters, not in bytes! * * @param start Local start position, in characters * @param end Local end position, in characters */ @Deprecated public String substring(int start, int end) { StringBuilder buf = (StringBuilder) _buf; // Validate if (start < 0) { throw new StringIndexOutOfBoundsException("Can't request a substring before 0 - asked for " + start); } if (end > buf.length()) { throw new StringIndexOutOfBoundsException("Index " + end + " out of range 0 -> " + buf.length()); } if (end < start) { throw new StringIndexOutOfBoundsException("Asked for text from " + start + " to " + end + ", which has an end before the start!"); } return buf.substring(start, end); } /** * Adjusts the internal string for deletinging * some characters within this. * * @param start The start position for the delete, in characters * @param length The number of characters to delete */ @Override @Deprecated public void adjustForDelete(int start, int length) { int myStart = getStart(); int myEnd = getEnd(); int end = start + length; /* do we have to delete from this text piece? */ if (start <= myEnd && end >= myStart) { /* find where the deleted area overlaps with this text piece */ int overlapStart = Math.max(myStart, start); int overlapEnd = Math.min(myEnd, end); int bufStart = overlapStart - myStart; int bufEnd = overlapEnd - myStart; ((StringBuilder) _buf).delete(bufStart, bufEnd); } // We need to invoke this even if text from this piece is not being // deleted because the adjustment must propagate to all subsequent // text pieces i.e., if text from tp[n] is being deleted, then // tp[n + 1], tp[n + 2], etc. will need to be adjusted. // The superclass is expected to use a separate sentry for this. super.adjustForDelete(start, length); } /** * Returns the length, in characters */ @Deprecated public int characterLength() { return (getEnd() - getStart()); } /** * Returns the length, in bytes */ public int bytesLength() { return (getEnd() - getStart()) * (_usesUnicode ? 2 : 1); } @Override public boolean equals(Object o) { if (!(o instanceof TextPiece)) return false; TextPiece tp = (TextPiece) o; assert (_buf != null && tp._buf != null && _pd != null && tp._pd != null); return ( limitsAreEqual(o) && tp._usesUnicode == this._usesUnicode && tp._buf.toString().equals(this._buf.toString()) && tp._pd.equals(this._pd) ); } @Override public int hashCode() { assert false : "hashCode not designed"; return 42; // any arbitrary constant will do } /** * Returns the character position we start at. */ public int getCP() { return getStart(); } public String toString() { return "TextPiece from " + getStart() + " to " + getEnd() + " (" + getPieceDescriptor() + ")"; } @Override public TextPiece copy() { return new TextPiece(this); } }
⏎ org/apache/poi/hwpf/model/TextPiece.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, 34314👍, 0💬
Popular Posts:
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
xml-commons Resolver Source Code Files are provided in the source package file, xml-commons-resolver...
Where to find answers to frequently asked questions on Downloading and Installing ojdbc.jar - JDBC D...
What Is commons-collections4-4.4 .jar?commons-collections4-4.4 .jaris the JAR file for Apache Common...