|
时 间 记 忆 |
<< < 2018 - 2 > >>
日 |
一 |
二 |
三 |
四 |
五 |
六 |
|
|
|
|
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
|
|
|
|
|
|
|
|
java poi 判断excel是03 还是 07 |
[ 2018-2-7 9:19:00 | By: 我家超超会发光 ] |
-
- public static boolean is2003Excel(String filePath) {
- return filePath.matches("^.+\\.(?i)(xls)$");
- }
-
- public static boolean is2007Excel(String filePath) {
- return filePath.matches("^.+\\.(?i)(xlsx)$");
- }
|
|
|
|
|