throw new IllegalArgumentException("part");
}
- if (partList.containsKey(part._partName)) {
+ if (hasPackagePart(part)) {
if (!partList.get(part._partName).isDeleted()) {
throw new InvalidOperationException(
"A part with the name '"
return part;
}
+ protected boolean hasPackagePart(PackagePart part) {
+ return partList.containsKey(part._partName);
+ }
+
/**
* Remove the specified part in this package. If this part is relationship
* part, then delete all relationships in the source part.
// Ensure that core properties are added if missing
getPackageProperties();
// Add core properties to part list ...
- addPackagePart(this.packageProperties);
+ if (!hasPackagePart(this.packageProperties)) {
+ addPackagePart(this.packageProperties);
+ }
// ... and to add its relationship ...
this.relationships.addRelationship(this.packageProperties
.getPartName().getURI(), TargetMode.INTERNAL,
}
}
+ @Test
+ void testBug66675() throws Exception {
+ try (XSSFWorkbook wb = openSampleWorkbook("bug66675.xlsx")) {
+ POIXMLProperties.CoreProperties coreProperties = wb.getProperties().getCoreProperties();
+ assertNotNull(coreProperties);
+ wb.removeSheetAt(0);
+ try (UnsynchronizedByteArrayOutputStream bos = UnsynchronizedByteArrayOutputStream.builder().get()) {
+ wb.write(bos);
+ try (XSSFWorkbook wb2 = new XSSFWorkbook(bos.toInputStream())) {
+ XSSFSheet sheet = wb2.getSheetAt(0);
+ assertNotNull(sheet);
+ assertNotNull(wb2.getProperties().getCoreProperties());
+ }
+ }
+ }
+ }
+
private static void readByCommonsCompress(File temp_excel_poi) throws IOException {
/* read by commons-compress*/
try (ZipFile zipFile = new ZipFile(temp_excel_poi)) {