打开文件 @param filePath 文件路径 @param dataType 数据类型 @return true success, false fail
(
final String filePath,
final String dataType
)
| 1991 | * @return {@code true} success, {@code false} fail |
| 1992 | */ |
| 1993 | public static boolean openFile( |
| 1994 | final String filePath, |
| 1995 | final String dataType |
| 1996 | ) { |
| 1997 | return openFile(FileUtils.getFileByPath(filePath), dataType); |
| 1998 | } |
| 1999 | |
| 2000 | /** |
| 2001 | * 打开文件 |
no test coverage detected