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/DrawingGroupRecord.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.List;
import java.util.Map;
import java.util.function.Supplier;
import org.apache.poi.ddf.EscherRecord;
import org.apache.poi.ddf.EscherRecordTypes;
import org.apache.poi.ddf.NullEscherSerializationListener;
import org.apache.poi.util.LittleEndian;
import org.apache.poi.util.Removal;
/**
* Specifies a group of drawing objects.
* <p>
* Contains a single {@link EscherRecordTypes#DGG_CONTAINER OfficeArtDggContainer} that specifies the group of drawing
* objects. Get the {@link org.apache.poi.ddf.EscherContainerRecord} representation via {@link #getEscherContainer()}.
* <p>
* Referred to as an {@code MsoDrawingGroup} in {@code [MS-XLS].pdf v20190618}.
*/
public final class DrawingGroupRecord extends AbstractEscherHolderRecord {
public static final short sid = 0xEB;
private static final int DEFAULT_MAX_RECORD_SIZE = 8228;
private static int MAX_RECORD_SIZE = DEFAULT_MAX_RECORD_SIZE;
/**
* @param size the max record size allowed for DrawingGroupRecord
*/
public static void setMaxRecordSize(int size) {
MAX_RECORD_SIZE = size;
}
/**
* @return the max record size allowed for DrawingGroupRecord
*/
public static int getMaxRecordSize() {
return MAX_RECORD_SIZE;
}
private static int getMaxDataSize() {
return MAX_RECORD_SIZE - 4;
}
public DrawingGroupRecord() {}
public DrawingGroupRecord(DrawingGroupRecord other) {
super(other);
}
public DrawingGroupRecord( RecordInputStream in ) {
super( in );
}
protected String getRecordName()
{
return "MSODRAWINGGROUP";
}
public short getSid()
{
return sid;
}
public int serialize(int offset, byte[] data)
{
byte[] rawData = getRawData();
if (getEscherRecords().isEmpty() && rawData != null)
{
return writeData( offset, data, rawData );
}
byte[] buffer = new byte[getRawDataSize()];
int pos = 0;
for (EscherRecord r : getEscherRecords()) {
pos += r.serialize(pos, buffer, new NullEscherSerializationListener());
}
return writeData( offset, data, buffer );
}
/**
* Process the bytes into escher records.
* (Not done by default in case we break things,
* unless you set the "poi.deserialize.escher"
* system property)
*
* @deprecated Call {@link #decode()} instead.
*/
@Removal(version = "5.3")
@Deprecated
public void processChildRecords() {
decode();
}
public int getRecordSize() {
// TODO - convert this to a RecordAggregate
return grossSizeFromDataSize(getRawDataSize());
}
private int getRawDataSize() {
List<EscherRecord> escherRecords = getEscherRecords();
byte[] rawData = getRawData();
if (escherRecords.isEmpty() && rawData != null) {
return rawData.length;
}
int size = 0;
for (EscherRecord r : escherRecords) {
size += r.getRecordSize();
}
return size;
}
static int grossSizeFromDataSize(int dataSize)
{
return dataSize + ( (dataSize - 1) / getMaxDataSize() + 1 ) * 4;
}
private int writeData( int offset, byte[] data, byte[] rawData )
{
int writtenActualData = 0;
int writtenRawData = 0;
while (writtenRawData < rawData.length)
{
final int maxDataSize = getMaxDataSize();
int segmentLength = Math.min( rawData.length - writtenRawData, maxDataSize);
if (writtenRawData / maxDataSize >= 2)
writeContinueHeader( data, offset, segmentLength );
else
writeHeader( data, offset, segmentLength );
writtenActualData += 4;
offset += 4;
System.arraycopy( rawData, writtenRawData, data, offset, segmentLength );
offset += segmentLength;
writtenRawData += segmentLength;
writtenActualData += segmentLength;
}
return writtenActualData;
}
private void writeHeader( byte[] data, int offset, int sizeExcludingHeader )
{
LittleEndian.putShort(data, offset, getSid());
LittleEndian.putShort(data, offset + 2, (short) sizeExcludingHeader);
}
private void writeContinueHeader( byte[] data, int offset, int sizeExcludingHeader )
{
LittleEndian.putShort(data, offset, ContinueRecord.sid);
LittleEndian.putShort(data, offset + 2, (short) sizeExcludingHeader);
}
@Override
public DrawingGroupRecord copy() {
return new DrawingGroupRecord(this);
}
@Override
public HSSFRecordTypes getGenericRecordType() {
return HSSFRecordTypes.DRAWING_GROUP;
}
@Override
public Map<String, Supplier<?>> getGenericProperties() {
return null;
}
}
⏎ org/apache/poi/hssf/record/DrawingGroupRecord.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, ≈304🔥, 0💬
Popular Posts:
JDK 11 jdk.scripting.nashorn.jm odis the JMOD file for JDK 11 Scripting Nashorn module. JDK 11 Scrip...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
jlGui is a music player for the Java platform. It is based on Java Sound 1.0 (i.e. JDK 1.3+). It sup...
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...