*** empty log message ***
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353267 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b36dd93dd5
commit
6f0a5b9da6
@ -58,8 +58,10 @@
|
|||||||
|
|
||||||
package org.apache.poi.contrib.poibrowser;
|
package org.apache.poi.contrib.poibrowser;
|
||||||
|
|
||||||
import java.io.*;
|
import java.io.BufferedReader;
|
||||||
import java.util.*;
|
import java.io.IOException;
|
||||||
|
import java.io.InputStreamReader;
|
||||||
|
|
||||||
import org.apache.poi.hpsf.ClassID;
|
import org.apache.poi.hpsf.ClassID;
|
||||||
|
|
||||||
|
|
||||||
|
@ -265,13 +265,4 @@ public class TreeReaderListener implements POIFSReaderListener
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private String s(final Object o)
|
|
||||||
{
|
|
||||||
if (o == null)
|
|
||||||
return "null";
|
|
||||||
else
|
|
||||||
return o.getClass().getName() + '@' + o.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -90,7 +90,10 @@ public class Util
|
|||||||
* output stream until end of file is encountered.</p>
|
* output stream until end of file is encountered.</p>
|
||||||
*
|
*
|
||||||
* @param in the input stream to read from
|
* @param in the input stream to read from
|
||||||
|
*
|
||||||
* @param out the output stream to write to
|
* @param out the output stream to write to
|
||||||
|
*
|
||||||
|
* @exception IOException if an I/O exception occurs
|
||||||
*/
|
*/
|
||||||
public static void copy(final InputStream in, final OutputStream out)
|
public static void copy(final InputStream in, final OutputStream out)
|
||||||
throws IOException
|
throws IOException
|
||||||
@ -129,6 +132,11 @@ public class Util
|
|||||||
*
|
*
|
||||||
* @return The POI files. The elements are ordered in the same way
|
* @return The POI files. The elements are ordered in the same way
|
||||||
* as the files in the POI filesystem.
|
* as the files in the POI filesystem.
|
||||||
|
*
|
||||||
|
* @exception FileNotFoundException if the file containing the POI
|
||||||
|
* filesystem does not exist
|
||||||
|
*
|
||||||
|
* @exception IOException if an I/O exception occurs
|
||||||
*/
|
*/
|
||||||
public static POIFile[] readPOIFiles(final File poiFs)
|
public static POIFile[] readPOIFiles(final File poiFs)
|
||||||
throws FileNotFoundException, IOException
|
throws FileNotFoundException, IOException
|
||||||
@ -151,6 +159,11 @@ public class Util
|
|||||||
*
|
*
|
||||||
* @return The POI files. The elements are ordered in the same way
|
* @return The POI files. The elements are ordered in the same way
|
||||||
* as the files in the POI filesystem.
|
* as the files in the POI filesystem.
|
||||||
|
*
|
||||||
|
* @exception FileNotFoundException if the file containing the POI
|
||||||
|
* filesystem does not exist
|
||||||
|
*
|
||||||
|
* @exception IOException if an I/O exception occurs
|
||||||
*/
|
*/
|
||||||
public static POIFile[] readPOIFiles(final File poiFs,
|
public static POIFile[] readPOIFiles(final File poiFs,
|
||||||
final String[] poiFiles)
|
final String[] poiFiles)
|
||||||
|
Loading…
Reference in New Issue
Block a user