mirror of https://github.com/apache/poi.git
Fixed WorkbookFactory.create(InputStream) to throw specific Exceptions
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@743934 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
30a8bdb66d
commit
1afb1f344b
|
@ -24,6 +24,7 @@ import org.apache.poi.POIXMLDocument;
|
|||
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
||||
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
||||
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
||||
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
||||
import org.apache.poi.openxml4j.opc.Package;
|
||||
|
||||
/**
|
||||
|
@ -49,7 +50,7 @@ public class WorkbookFactory {
|
|||
* Your input stream MUST either support mark/reset, or
|
||||
* be wrapped as a {@link PushbackInputStream}!
|
||||
*/
|
||||
public static Workbook create(InputStream inp) throws Exception {
|
||||
public static Workbook create(InputStream inp) throws IOException, InvalidFormatException {
|
||||
// If clearly doesn't do mark/reset, wrap up
|
||||
if(! inp.markSupported()) {
|
||||
inp = new PushbackInputStream(inp, 8);
|
||||
|
|
Loading…
Reference in New Issue