📄 writableworkbookimpl.java~
字号:
/*********************************************************************
*
* Copyright (C) 2002 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***************************************************************************/
package jxl.write.biff;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import common.Assert;
import common.Logger;
import jxl.Range;
import jxl.Sheet;
import jxl.Workbook;
import jxl.WorkbookSettings;
import jxl.biff.BuiltInName;
import jxl.biff.CellReferenceHelper;
import jxl.biff.CountryCode;
import jxl.biff.Fonts;
import jxl.biff.FormattingRecords;
import jxl.biff.IndexMapping;
import jxl.biff.IntegerHelper;
import jxl.biff.RangeImpl;
import jxl.biff.WorkbookMethods;
import jxl.biff.drawing.Drawing;
import jxl.biff.drawing.DrawingGroup;
import jxl.biff.drawing.DrawingGroupObject;
import jxl.biff.drawing.Origin;
import jxl.biff.formula.ExternalSheet;
import jxl.format.Colour;
import jxl.format.RGB;
import jxl.read.biff.WorkbookParser;
import jxl.write.WritableCell;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
/**
* A writable workbook
*/
public class WritableWorkbookImpl extends WritableWorkbook
implements ExternalSheet, WorkbookMethods
{
/**
* The logger
*/
private static Logger logger = Logger.getLogger(WritableWorkbookImpl.class);
/**
* The list of formats available within this workbook
*/
private FormattingRecords formatRecords;
/**
* The output file to write the workbook to
*/
private File outputFile;
/**
* The list of sheets within this workbook
*/
private ArrayList sheets;
/**
* The list of fonts available within this workbook
*/
private Fonts fonts;
/**
* The list of external sheets, used by cell references in formulas
*/
private ExternalSheetRecord externSheet;
/**
* The supbook records
*/
private ArrayList supbooks;
/**
* The name records
*/
private ArrayList names;
/**
* A lookup hash map of the name records
*/
private HashMap nameRecords;
/**
* The shared strings used by this workbook
*/
private SharedStrings sharedStrings;
/**
* Indicates whether or not the output stream should be closed. This
* depends on whether this Workbook was created with an output stream,
* or a flat file (flat file closes the stream
*/
private boolean closeStream;
/**
* The workbook protection flag
*/
private boolean wbProtected;
/**
* The settings for the workbook
*/
private WorkbookSettings settings;
/**
* The list of cells for the entire workbook which need to be updated
* following a row/column insert or remove
*/
private ArrayList rcirCells;
/**
* The drawing group
*/
private DrawingGroup drawingGroup;
/**
* The common workbook styles
*/
private Styles styles;
/**
* Contains macros flag
*/
private boolean containsMacros;
/**
* The buttons property set
*/
private ButtonPropertySetRecord buttonPropertySet;
/**
* The country record, initialised when copying a workbook
*/
private CountryRecord countryRecord;
/**
* The names of any add in functions
*/
private String[] addInFunctionNames;
/**
* Constructor. Writes the workbook direct to the existing output stream
*
* @exception IOException
* @param os the output stream
* @param cs TRUE if the workbook should close the output stream, FALSE
* @param ws the configuration for this workbook
* otherwise
*/
public WritableWorkbookImpl(OutputStream os, boolean cs, WorkbookSettings ws)
throws IOException
{
super();
outputFile = new File(os, ws, null);
sheets = new ArrayList();
sharedStrings = new SharedStrings();
nameRecords = new HashMap();
closeStream = cs;
wbProtected = false;
containsMacros = false;
settings = ws;
rcirCells = new ArrayList();
styles = new Styles();
// Reset the statically declared styles. Thanks to Brendan for this
WritableWorkbook.ARIAL_10_PT.uninitialize();
WritableWorkbook.HYPERLINK_FONT.uninitialize();
WritableWorkbook.NORMAL_STYLE.uninitialize();
WritableWorkbook.HYPERLINK_STYLE.uninitialize();
WritableWorkbook.HIDDEN_STYLE.uninitialize();
DateRecord.defaultDateFormat.uninitialize();
WritableFonts wf = new WritableFonts(this);
fonts = wf;
WritableFormattingRecords wfr = new WritableFormattingRecords(fonts,
styles);
formatRecords = wfr;
}
/**
* A pseudo copy constructor. Takes the handles to the font and formatting
* records
*
* @exception IOException
* @param w the workbook to copy
* @param os the output stream to write the data to
* @param cs TRUE if the workbook should close the output stream, FALSE
* @param ws the configuration for this workbook
*/
public WritableWorkbookImpl(OutputStream os,
Workbook w,
boolean cs,
WorkbookSettings ws) throws IOException
{
super();
WorkbookParser wp = (WorkbookParser) w;
// Reset the statically declared styles. Thanks to Brendan for this
WritableWorkbook.ARIAL_10_PT.uninitialize();
WritableWorkbook.HYPERLINK_FONT.uninitialize();
WritableWorkbook.NORMAL_STYLE.uninitialize();
WritableWorkbook.HYPERLINK_STYLE.uninitialize();
WritableWorkbook.HIDDEN_STYLE.uninitialize();
DateRecord.defaultDateFormat.uninitialize();
closeStream = cs;
sheets = new ArrayList();
sharedStrings = new SharedStrings();
nameRecords = new HashMap();
fonts = wp.getFonts();
formatRecords = wp.getFormattingRecords();
wbProtected = false;
settings = ws;
rcirCells = new ArrayList();
styles = new Styles();
outputFile = new File(os, ws, wp.getCompoundFile());
containsMacros = false;
if (!ws.getPropertySetsDisabled())
{
containsMacros = wp.containsMacros();
}
// Copy the country settings
if (wp.getCountryRecord() != null)
{
countryRecord = new CountryRecord(wp.getCountryRecord());
}
// Copy any add in functions
addInFunctionNames = wp.getAddInFunctionNames();
// Copy any external sheets
if (wp.getExternalSheetRecord() != null)
{
externSheet = new ExternalSheetRecord(wp.getExternalSheetRecord());
// Get the associated supbooks
jxl.read.biff.SupbookRecord[] readsr = wp.getSupbookRecords();
supbooks = new ArrayList(readsr.length);
for (int i = 0; i < readsr.length; i++)
{
jxl.read.biff.SupbookRecord readSupbook = readsr[i];
if (readSupbook.getType() == readSupbook.INTERNAL ||
readSupbook.getType() == readSupbook.EXTERNAL)
{
supbooks.add(new SupbookRecord(readSupbook, settings));
}
else
{
if (readSupbook.getType() != readSupbook.ADDIN)
{
logger.warn("unsupported supbook type - ignoring");
}
}
}
}
// Copy any drawings. These must be present before we try and copy
// the images from the read workbook
if (wp.getDrawingGroup() != null)
{
drawingGroup = new DrawingGroup(wp.getDrawingGroup());
}
// Copy the property set references
if (containsMacros && wp.getButtonPropertySet() != null)
{
buttonPropertySet = new ButtonPropertySetRecord
(wp.getButtonPropertySet());
}
// Copy any names
if (!settings.getNamesDisabled())
{
jxl.read.biff.NameRecord[] na = wp.getNameRecords();
names = new ArrayList(na.length);
for (int i = 0; i < na.length; i++)
{
if (na[i].isBiff8())
{
NameRecord n = new NameRecord(na[i], i);
names.add(n);
String name = n.getName();
nameRecords.put(name, n);
}
else
{
logger.warn("Cannot copy Biff7 name records - ignoring");
}
}
}
copyWorkbook(w);
// The copy process may have caused some critical fields in the
// read drawing group to change. Make sure these updates are reflected
// in the writable drawing group
if (drawingGroup != null)
{
drawingGroup.updateData(wp.getDrawingGroup());
}
}
/**
* Gets the sheets within this workbook. Use of this method for
* large worksheets can cause performance problems.
*
* @return an array of the individual sheets
*/
public WritableSheet[] getSheets()
{
WritableSheet[] sheetArray = new WritableSheet[getNumberOfSheets()];
for (int i = 0 ; i < getNumberOfSheets() ; i++)
{
sheetArray[i] = getSheet(i);
}
return sheetArray;
}
/**
* Gets the sheet names
*
* @return an array of strings containing the sheet names
*/
public String[] getSheetNames()
{
String[] sheetNames = new String[getNumberOfSheets()];
for (int i = 0 ; i < sheetNames.length ; i++)
{
sheetNames[i] = getSheet(i).getName();
}
return sheetNames;
}
/**
* Interface method from WorkbookMethods - gets the specified
* sheet within this workbook
*
* @param index the zero based index of the required sheet
* @return The sheet specified by the index
*/
public Sheet getReadSheet(int index)
{
return getSheet(index);
}
/**
* Gets the specified sheet within this workbook
*
* @param index the zero based index of the reQuired sheet
* @return The sheet specified by the index
*/
public WritableSheet getSheet(int index)
{
return (WritableSheet) sheets.get(index);
}
/**
* Gets the sheet with the specified name from within this workbook
*
* @param name the sheet name
* @return The sheet with the specified name, or null if it is not found
*/
public WritableSheet getSheet(String name)
{
// Iterate through the boundsheet records
boolean found = false;
Iterator i = sheets.iterator();
WritableSheet s = null;
while (i.hasNext() && !found)
{
s = (WritableSheet) i.next();
if (s.getName().equals(name))
{
found = true;
}
}
return found ? s : null;
}
/**
* Returns the number of sheets in this workbook
*
* @return the number of sheets in this workbook
*/
public int getNumberOfSheets()
{
return sheets.size();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -