mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2025-04-05 17:37:49 +08:00
移除@Nullable注解,解决编译warning:未知的枚举常量 javax.annotation.meta.When.MAYBE
This commit is contained in:
parent
b8c283f602
commit
08e5a15424
@ -4,7 +4,6 @@ import org.apache.commons.lang3.exception.ExceptionUtils;
|
|||||||
import org.apache.poi.EncryptedDocumentException;
|
import org.apache.poi.EncryptedDocumentException;
|
||||||
import org.apache.poi.extractor.ExtractorFactory;
|
import org.apache.poi.extractor.ExtractorFactory;
|
||||||
import org.apache.poi.hssf.record.crypto.Biff8EncryptionKey;
|
import org.apache.poi.hssf.record.crypto.Biff8EncryptionKey;
|
||||||
import org.springframework.lang.Nullable;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@ -63,7 +62,7 @@ public class OfficeUtils {
|
|||||||
* @param password 文件密码
|
* @param password 文件密码
|
||||||
* @return 是否可打开(兼容)
|
* @return 是否可打开(兼容)
|
||||||
*/
|
*/
|
||||||
public static synchronized boolean isCompatible(String path, @Nullable String password) {
|
public static synchronized boolean isCompatible(String path, String password) {
|
||||||
InputStream propStream = null;
|
InputStream propStream = null;
|
||||||
try {
|
try {
|
||||||
propStream = Files.newInputStream(Paths.get(path));
|
propStream = Files.newInputStream(Paths.get(path));
|
||||||
|
Loading…
Reference in New Issue
Block a user