⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hssfworkbook.java

📁 Office格式转换代码
💻 JAVA
📖 第 1 页 / 共 3 页
字号:
     * get the cell style object at the given index     * @param idx  index within the set of styles     * @return HSSFCellStyle object at the index     */    public HSSFCellStyle getCellStyleAt(short idx)    {        ExtendedFormatRecord xfr = workbook.getExFormatAt(idx);        HSSFCellStyle style = new HSSFCellStyle(idx, xfr);        return style;    }    /**     * Method write - write out this workbook to an Outputstream.  Constructs     * a new POI POIFSFileSystem, passes in the workbook binary representation  and     * writes it out.     *     * @param stream - the java OutputStream you wish to write the XLS to     *     * @exception IOException if anything can't be written.     * @see org.apache.poi.poifs.filesystem.POIFSFileSystem     */    public void write(OutputStream stream)            throws IOException    {        byte[] bytes = getBytes();        POIFSFileSystem fs = new POIFSFileSystem();              fs.createDocument(new ByteArrayInputStream(bytes), "Workbook");        if (preserveNodes) {             List excepts = new ArrayList(1);            excepts.add("Workbook");            copyNodes(this.poifs,fs,excepts);        }        fs.writeFilesystem(stream);        //poifs.writeFilesystem(stream);    }    /**     * Method getBytes - get the bytes of just the HSSF portions of the XLS file.     * Use this to construct a POI POIFSFileSystem yourself.     *     *     * @return byte[] array containing the binary representation of this workbook and all contained     *         sheets, rows, cells, etc.     *     * @see org.apache.poi.hssf.model.Workbook     * @see org.apache.poi.hssf.model.Sheet     */    public byte[] getBytes()    {        log.log(DEBUG, "HSSFWorkbook.getBytes()");        int wbsize = workbook.getSize();        // log.debug("REMOVEME: old sizing method "+workbook.serialize().length);        // ArrayList sheetbytes = new ArrayList(sheets.size());        int totalsize = wbsize;        for (int k = 0; k < sheets.size(); k++)        {            workbook.setSheetBof(k, totalsize);            // sheetbytes.add((( HSSFSheet ) sheets.get(k)).getSheet().getSize());            totalsize += ((HSSFSheet) sheets.get(k)).getSheet().getSize();        }/*        if (totalsize < 4096)        {            totalsize = 4096;        }*/        byte[] retval = new byte[totalsize];        int pos = workbook.serialize(0, retval);        // System.arraycopy(wb, 0, retval, 0, wb.length);        for (int k = 0; k < sheets.size(); k++)        {            // byte[] sb = (byte[])sheetbytes.get(k);            // System.arraycopy(sb, 0, retval, pos, sb.length);            pos += ((HSSFSheet) sheets.get(k)).getSheet().serialize(pos,                    retval);   // sb.length;        }/*        for (int k = pos; k < totalsize; k++)        {            retval[k] = 0;        }*/        return retval;    }    public int addSSTString(String string)    {        return workbook.addSSTString(string);    }    public String getSSTString(int index)    {        return workbook.getSSTString(index);    }    Workbook getWorkbook()    {        return workbook;    }        /** gets the total number of named ranges in the workboko     * @return number of named ranges     */        public int getNumberOfNames(){        int result = names.size();        return result;    }        /** gets the Named range     * @param index position of the named range     * @return named range high level     */        public HSSFName getNameAt(int index){        HSSFName result = (HSSFName) names.get(index);                return result;    }        /** gets the named range name     * @param index the named range index (0 based)     * @return named range name     */        public String getNameName(int index){        String result = getNameAt(index).getNameName();                        return result;    }    	/**	 * Sets the printarea for the sheet provided	 * <p>	 * i.e. Reference = $A$1:$B$2	 * @param sheetIndex Zero-based sheet index (0 Represents the first sheet to keep consistent with java)	 * @param reference Valid name Reference for the Print Area 	 */	public void setPrintArea(int sheetIndex, String reference)	{		NameRecord name = workbook.getSpecificBuiltinRecord(NameRecord.BUILTIN_PRINT_AREA, sheetIndex+1);				if (name == null)			name = workbook.createBuiltInName(NameRecord.BUILTIN_PRINT_AREA, sheetIndex+1);       //adding one here because 0 indicates a global named region; doesnt make sense for print areas       	    short externSheetIndex = getWorkbook().checkExternSheet(sheetIndex);		name.setExternSheetNumber(externSheetIndex);       		name.setAreaReference(reference);       			}		/**	 * For the Convenience of Java Programmers maintaining pointers.	 * @see setPrintArea(int, String)	 * @param sheetIndex Zero-based sheet index (0 = First Sheet)	 * @param startColumn Column to begin printarea	 * @param endColumn Column to end the printarea	 * @param startRow Row to begin the printarea	 * @param endRow Row to end the printarea	 */	public void setPrintArea(int sheetIndex, int startColumn, int endColumn,							  int startRow, int endRow) {							  			//using absolute references because they dont get copied and pasted anyway							  			CellReference cell = new CellReference(startRow, startColumn, true, true);		String reference = cell.toString();				cell = new CellReference(endRow, endColumn, true, true);		reference = reference+":"+cell.toString();				setPrintArea(sheetIndex, reference);							  		}							  	    	/**	 * Retrieves the reference for the printarea of the specified sheet, the sheet name is appended to the reference even if it was not specified.	 * @param sheetIndex Zero-based sheet index (0 Represents the first sheet to keep consistent with java) 	 * @return String Null if no print area has been defined	 */	    	public String getPrintArea(int sheetIndex)	{		NameRecord name = workbook.getSpecificBuiltinRecord(NameRecord.BUILTIN_PRINT_AREA, sheetIndex+1);				if (name == null) return null;		//adding one here because 0 indicates a global named region; doesnt make sense for print areas   		return name.getAreaReference(workbook);	}            /**     * Delete the printarea for the sheet specified     * @param sheetIndex Zero-based sheet index (0 = First Sheet)     */    public void removePrintArea(int sheetIndex) {    	getWorkbook().removeBuiltinRecord(NameRecord.BUILTIN_PRINT_AREA, sheetIndex+1);     }        /** creates a new named range and add it to the model     * @return named range high level     */        public HSSFName createName(){        NameRecord nameRecord = workbook.createName();                HSSFName newName = new HSSFName(workbook, nameRecord);                names.add(newName);                return newName;     }        /** gets the named range index by his name     * @param name named range name     * @return named range index      */        public int getNameIndex(String name)    {        int retval = -1;        for (int k = 0; k < names.size(); k++)        {            String nameName = getNameName(k);            if (nameName.equals(name))            {                retval = k;                break;            }        }        return retval;    }    /** remove the named range by his index     * @param index named range index (0 based)     */        public void removeName(int index){        names.remove(index);        workbook.removeName(index);            }    /**     * Returns the instance of HSSFDataFormat for this workbook.     * @return the HSSFDataFormat object     * @see org.apache.poi.hssf.record.FormatRecord     * @see org.apache.poi.hssf.record.Record     */    public HSSFDataFormat createDataFormat() {	if (formatter == null)	    formatter = new HSSFDataFormat(workbook);	return formatter;    }	    /** remove the named range by his name     * @param name named range name     */        public void removeName(String name){        int index = getNameIndex(name);                removeName(index);                      }    public HSSFPalette getCustomPalette()    {        return new HSSFPalette(workbook.getCustomPalette());    }       /**    * Copies nodes from one POIFS to the other minus the excepts    * @param source is the source POIFS to copy from    * @param target is the target POIFS to copy to     * @param excepts is a list of Strings specifying what nodes NOT to copy     */   private void copyNodes(POIFSFileSystem source, POIFSFileSystem target,                           List excepts) throws IOException {      //System.err.println("CopyNodes called");      DirectoryEntry root = source.getRoot();      DirectoryEntry newRoot = target.getRoot();      Iterator entries = root.getEntries();             while (entries.hasNext()) {         Entry entry = (Entry)entries.next();         if (!isInList(entry.getName(), excepts)) {             copyNodeRecursively(entry,newRoot);         }      }    }   private boolean isInList(String entry, List list) {       for (int k = 0; k < list.size(); k++) {          if (list.get(k).equals(entry)) {            return true;          }       }       return false;   }   private void copyNodeRecursively(Entry entry, DirectoryEntry target)    throws IOException {       //System.err.println("copyNodeRecursively called with "+entry.getName()+       //                   ","+target.getName());       DirectoryEntry newTarget = null;        if (entry.isDirectoryEntry()) {           newTarget = target.createDirectory(entry.getName());           Iterator entries = ((DirectoryEntry)entry).getEntries();           while (entries.hasNext()) {              copyNodeRecursively((Entry)entries.next(),newTarget);           }        } else {         DocumentEntry dentry = (DocumentEntry)entry;         DocumentInputStream dstream = new DocumentInputStream(dentry);         target.createDocument(dentry.getName(),dstream);         dstream.close();       }   }    public void insertChartRecord()    {        int loc = workbook.findFirstRecordLocBySid(SSTRecord.sid);        byte[] data = {           (byte)0x0F, (byte)0x00, (byte)0x00, (byte)0xF0, (byte)0x52,           (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x00,           (byte)0x06, (byte)0xF0, (byte)0x18, (byte)0x00, (byte)0x00,           (byte)0x00, (byte)0x01, (byte)0x08, (byte)0x00, (byte)0x00,           (byte)0x02, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x02,           (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x01, (byte)0x00,           (byte)0x00, (byte)0x00, (byte)0x01, (byte)0x00, (byte)0x00,           (byte)0x00, (byte)0x03, (byte)0x00, (byte)0x00, (byte)0x00,           (byte)0x33, (byte)0x00, (byte)0x0B, (byte)0xF0, (byte)0x12,           (byte)0x00, (byte)0x00, (byte)0x00, (byte)0xBF, (byte)0x00,           (byte)0x08, (byte)0x00, (byte)0x08, (byte)0x00, (byte)0x81,           (byte)0x01, (byte)0x09, (byte)0x00, (byte)0x00, (byte)0x08,           (byte)0xC0, (byte)0x01, (byte)0x40, (byte)0x00, (byte)0x00,           (byte)0x08, (byte)0x40, (byte)0x00, (byte)0x1E, (byte)0xF1,           (byte)0x10, (byte)0x00, (byte)0x00, (byte)0x00, (byte)0x0D,           (byte)0x00, (byte)0x00, (byte)0x08, (byte)0x0C, (byte)0x00,           (byte)0x00, (byte)0x08, (byte)0x17, (byte)0x00, (byte)0x00,           (byte)0x08, (byte)0xF7, (byte)0x00, (byte)0x00, (byte)0x10,        };        UnknownRecord r = new UnknownRecord((short)0x00EB,(short)0x005a, data);        workbook.getRecords().add(loc, r);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -