java.lang.Object
com.aspose.cells.FileFormatUtil
public class FileFormatUtil
| Method Summary | ||
|---|---|---|
static FileFormatInfo | detectFileFormat(java.io.InputStream stream) | |
| Detects and returns the information about a format of an excel stored in a stream. | ||
static FileFormatInfo | detectFileFormat(java.io.InputStream stream, java.lang.String password) | |
| Detects and returns the information about a format of an excel stored in a stream. | ||
static FileFormatInfo | detectFileFormat(java.lang.String filePath) | |
| Detects and returns the information about a format of an excel stored in a file. | ||
static FileFormatInfo | detectFileFormat(java.lang.String filePath, java.lang.String password) | |
| Detects and returns the information about a format of an excel stored in a file. | ||
static int | extensionToSaveFormat(java.lang.String extension) | |
| Converts a file name extension into a SaveFormat value. | ||
static int | fileFormatToSaveFormat(int format) | |
| Converting file format to save format. | ||
static boolean | isTemplateFormat(java.lang.String extension) | |
| Returns true if the extension is .xlt, .xltX, .xltm,.ots. | ||
static java.lang.String | loadFormatToExtension(int loadFormat) | |
| Converts a load format enumerated value into a file extension. | ||
static int | loadFormatToSaveFormat(int loadFormat) | |
| Converts a LoadFormat value to a SaveFormat value if possible. | ||
static java.lang.String | saveFormatToExtension(int format) | |
| Converts a save format enumerated value into a file extension. | ||
static int | saveFormatToLoadFormat(int saveFormat) | |
| Converts a SaveFormat value to a LoadFormat value if possible. | ||
static boolean | verifyPassword(java.io.InputStream stream, java.lang.String password) | |
| Detects and returns the information about a format of an excel stored in a stream. | ||
| Method Detail |
|---|
detectFileFormat | |
public static FileFormatInfo detectFileFormat(java.io.InputStream stream) throws java.lang.Exception | |
stream - The streamdetectFileFormat | |
public static FileFormatInfo detectFileFormat(java.io.InputStream stream, java.lang.String password) throws java.lang.Exception | |
stream - password - The password for encrypted ooxml files.verifyPassword | |
public static boolean verifyPassword(java.io.InputStream stream, java.lang.String password)
throws java.lang.Exception | |
stream - password - The password for encrypted ooxml files.detectFileFormat | |
public static FileFormatInfo detectFileFormat(java.lang.String filePath) throws java.lang.Exception | |
filePath - The file path.detectFileFormat | |
public static FileFormatInfo detectFileFormat(java.lang.String filePath, java.lang.String password) throws java.lang.Exception | |
filePath - The file path.password - The password for encrypted ooxml files.fileFormatToSaveFormat | |
public static int fileFormatToSaveFormat(int format) | |
format - A extensionToSaveFormat | |
public static int extensionToSaveFormat(java.lang.String extension) | |
extension - The file extension. Can be with or without a leading dot. Case-insensitive.isTemplateFormat | |
public static boolean isTemplateFormat(java.lang.String extension) | |
extension - loadFormatToExtension | |
public static java.lang.String loadFormatToExtension(int loadFormat) | |
loadFormat - A loadFormatToSaveFormat | |
public static int loadFormatToSaveFormat(int loadFormat) | |
loadFormat - A saveFormatToExtension | |
public static java.lang.String saveFormatToExtension(int format) | |
format - A saveFormatToLoadFormat | |
public static int saveFormatToLoadFormat(int saveFormat) | |
saveFormat - A