This commit is contained in:
Looly 2021-08-18 23:30:46 +08:00
parent 5dce48db5e
commit 42fbe12f69
2 changed files with 14 additions and 1 deletions

View File

@ -12,7 +12,7 @@
* 【core 】 CsvConfig改为泛型形式
* 【core 】 增加Partition
* 【http 】 SoapClient.sendForResponse改为publicissue#I466NN@Gitee
* 【core 】 XmlUtil增加append重载issue#I466ZZ@Gitee
* 【core 】 XmlUtil增加append重载issue#I466Q0@Gitee
### 🐞Bug修复

View File

@ -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();
}
}