mirror of
https://gitee.com/dromara/hutool.git
synced 2025-05-02 20:02:49 +08:00
add test
This commit is contained in:
parent
5dce48db5e
commit
42fbe12f69
@ -12,7 +12,7 @@
|
||||
* 【core 】 CsvConfig改为泛型形式
|
||||
* 【core 】 增加Partition
|
||||
* 【http 】 SoapClient.sendForResponse改为public(issue#I466NN@Gitee)
|
||||
* 【core 】 XmlUtil增加append重载(issue#I466ZZ@Gitee)
|
||||
* 【core 】 XmlUtil增加append重载(issue#I466Q0@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
|
||||
|
@ -733,4 +733,17 @@ public class ExcelWriteTest {
|
||||
writer.writeRow(ListUtil.of(22.9f));
|
||||
writer.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
@Ignore
|
||||
public void issueI466ZZTest(){
|
||||
// https://gitee.com/dromara/hutool/issues/I466ZZ
|
||||
// 需要输出S_20000314_x5116_0004
|
||||
// 此处加入一个转义前缀:_x005F
|
||||
List<Object> row = ListUtil.of("S_20000314_x005F_x5116_0004");
|
||||
|
||||
ExcelWriter writer = ExcelUtil.getWriter("d:/test/_x.xlsx");
|
||||
writer.writeRow(row);
|
||||
writer.close();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user