mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-03 12:18:01 +08:00
HttpRequest#body增加支持Resource重载
This commit is contained in:
parent
0d11f82ee8
commit
28b52054b8
@ -0,0 +1,20 @@
|
|||||||
|
package cn.hutool.poi.excel;
|
||||||
|
|
||||||
|
import cn.hutool.core.lang.Console;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class Issue2941Test {
|
||||||
|
@Test
|
||||||
|
@Ignore
|
||||||
|
public void excelReadDateTest() {
|
||||||
|
final ExcelReader reader = ExcelUtil.getReader("d:/test/1677649503673.xlsx");
|
||||||
|
final List<Map<String, Object>> maps = reader.readAll();
|
||||||
|
for (Map<String, Object> map : maps) {
|
||||||
|
Console.log(map);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user