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

📄 testrewrite.java

📁 java 读写word excel ppt
💻 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.hslf;import junit.framework.TestCase;import java.io.*;import org.apache.poi.hslf.usermodel.SlideShow;import org.apache.poi.poifs.filesystem.*;/** * Tests that HSLFSlideShow writes the powerpoint bit of data back out *  correctly. Currently, that means being the same as what it read in * * @author Nick Burch (nick at torchbox dot com) */public class TestReWrite extends TestCase {	// HSLFSlideShow primed on the test data	private HSLFSlideShow hssA;	private HSLFSlideShow hssB;	// POIFS primed on the test data	private POIFSFileSystem pfsA;	private POIFSFileSystem pfsB;    public void setUp() throws Exception {		String dirname = System.getProperty("HSLF.testdata.path");				String filenameA = dirname + "/basic_test_ppt_file.ppt";		FileInputStream fisA = new FileInputStream(filenameA);		pfsA = new POIFSFileSystem(fisA);		hssA = new HSLFSlideShow(pfsA);				String filenameB = dirname + "/ParagraphStylesShorterThanCharStyles.ppt";		FileInputStream fisB = new FileInputStream(filenameB);		pfsB = new POIFSFileSystem(fisB);		hssB = new HSLFSlideShow(pfsB);    }    public void testWritesOutTheSame() throws Exception {    	assertWritesOutTheSame(hssA, pfsA);    	assertWritesOutTheSame(hssB, pfsB);    }    public void assertWritesOutTheSame(HSLFSlideShow hss, POIFSFileSystem pfs) throws Exception {		// Write out to a byte array		ByteArrayOutputStream baos = new ByteArrayOutputStream();		hss.write(baos);		// Build an input stream of it		ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());		// Use POIFS to query that lot		POIFSFileSystem npfs = new POIFSFileSystem(bais);		// Check that the "PowerPoint Document" sections have the same size		DocumentEntry oProps = (DocumentEntry)pfs.getRoot().getEntry("PowerPoint Document");		DocumentEntry nProps = (DocumentEntry)npfs.getRoot().getEntry("PowerPoint Document");		assertEquals(oProps.getSize(),nProps.getSize());		// Check that they contain the same data		byte[] _oData = new byte[oProps.getSize()];		byte[] _nData = new byte[nProps.getSize()];		pfs.createDocumentInputStream("PowerPoint Document").read(_oData);		npfs.createDocumentInputStream("PowerPoint Document").read(_nData);		for(int i=0; i<_oData.length; i++) {			//System.out.println(i + "\t" + Integer.toHexString(i));			assertEquals(_oData[i], _nData[i]);		}	}    /**     * Ensure that simply opening a slideshow (usermodel) view of it     *  doesn't change things      */    public void testSlideShowWritesOutTheSame() throws Exception {    	assertSlideShowWritesOutTheSame(hssA, pfsA);    	    	// Some bug in StyleTextPropAtom rewriting means this will fail    	// We need to identify and fix that first    	//assertSlideShowWritesOutTheSame(hssB, pfsB);    }    public void assertSlideShowWritesOutTheSame(HSLFSlideShow hss, POIFSFileSystem pfs) throws Exception {    	// Create a slideshow covering it    	SlideShow ss = new SlideShow(hss);    	ss.getSlides();    	ss.getNotes();    			// Now write out to a byte array		ByteArrayOutputStream baos = new ByteArrayOutputStream();		hss.write(baos);		// Build an input stream of it		ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());		// Use POIFS to query that lot		POIFSFileSystem npfs = new POIFSFileSystem(bais);		// Check that the "PowerPoint Document" sections have the same size		DocumentEntry oProps = (DocumentEntry)pfs.getRoot().getEntry("PowerPoint Document");		DocumentEntry nProps = (DocumentEntry)npfs.getRoot().getEntry("PowerPoint Document");		assertEquals(oProps.getSize(),nProps.getSize());		// Check that they contain the same data		byte[] _oData = new byte[oProps.getSize()];		byte[] _nData = new byte[nProps.getSize()];		pfs.createDocumentInputStream("PowerPoint Document").read(_oData);		npfs.createDocumentInputStream("PowerPoint Document").read(_nData);		for(int i=0; i<_oData.length; i++) {			if(_oData[i] != _nData[i])				System.out.println(i + "\t" + Integer.toHexString(i));			assertEquals(_oData[i], _nData[i]);		}	}}

⌨️ 快捷键说明

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