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

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