2004-04-09 13:05:39 +00:00
|
|
|
|
|
|
|
|
/* ====================================================================
|
2006-12-22 19:18:16 +00:00
|
|
|
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
|
2004-04-09 13:05:39 +00:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
==================================================================== */
|
|
|
|
|
|
2004-04-09 11:45:38 +00:00
|
|
|
package org.apache.poi.util;
|
|
|
|
|
|
|
|
|
|
import org.apache.poi.hssf.usermodel.HSSFSheet;
|
2005-05-01 11:26:18 +00:00
|
|
|
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
2004-04-09 11:45:38 +00:00
|
|
|
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
|
|
|
|
|
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Dump out the aggregated escher records
|
|
|
|
|
*/
|
|
|
|
|
public class DrawingDump
|
|
|
|
|
{
|
|
|
|
|
public static void main( String[] args ) throws IOException
|
|
|
|
|
{
|
|
|
|
|
POIFSFileSystem fs =
|
|
|
|
|
new POIFSFileSystem(new FileInputStream(args[0]));
|
|
|
|
|
HSSFWorkbook wb = new HSSFWorkbook(fs);
|
2014-11-09 17:53:10 +00:00
|
|
|
try {
|
|
|
|
|
System.out.println( "Drawing group:" );
|
|
|
|
|
wb.dumpDrawingGroupRecords(true);
|
|
|
|
|
|
|
|
|
|
for (int sheetNum = 1; sheetNum <= wb.getNumberOfSheets(); sheetNum++)
|
|
|
|
|
{
|
|
|
|
|
System.out.println( "Sheet " + sheetNum + ":" );
|
|
|
|
|
HSSFSheet sheet = wb.getSheetAt(sheetNum - 1);
|
|
|
|
|
sheet.dumpDrawingRecords(true);
|
|
|
|
|
}
|
|
|
|
|
} finally {
|
|
|
|
|
wb.close();
|
2005-05-01 11:26:18 +00:00
|
|
|
}
|
2004-04-09 11:45:38 +00:00
|
|
|
}
|
|
|
|
|
}
|