mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
feat: Add widthRatio parameter for Excel autoSizeColumn 2
This commit is contained in:
parent
fdf9d5dd5e
commit
3728891253
@ -159,9 +159,18 @@ public class BigExcelWriter extends ExcelWriter {
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public BigExcelWriter autoSizeColumnAll(float widthRatio) {
|
||||
final SXSSFSheet sheet = (SXSSFSheet) this.sheet;
|
||||
sheet.trackAllColumnsForAutoSizing();
|
||||
super.autoSizeColumnAll(widthRatio);
|
||||
sheet.untrackAllColumnsForAutoSizing();
|
||||
return this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ExcelWriter flush(OutputStream out, boolean isCloseOut) throws IORuntimeException {
|
||||
if (false == isFlushed) {
|
||||
if (!isFlushed) {
|
||||
isFlushed = true;
|
||||
return super.flush(out, isCloseOut);
|
||||
}
|
||||
@ -170,7 +179,7 @@ public class BigExcelWriter extends ExcelWriter {
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
if (null != this.destFile && false == isFlushed) {
|
||||
if (null != this.destFile && !isFlushed) {
|
||||
flush();
|
||||
}
|
||||
|
||||
|
@ -887,9 +887,21 @@ public class ExcelWriteTest {
|
||||
Map<String, Object> map = new LinkedHashMap<>(MAP_DATA_1);
|
||||
map.put("中文长度测试(符号)", "abc");
|
||||
|
||||
try (ExcelWriter writer = new ExcelWriter("d:/autoSizeColumnTest.xlsx")) {
|
||||
String file1 = "d:/autoSizeColumnTest.xlsx";
|
||||
String file2 = "d:/autoSizeColumnTest2.xlsx";
|
||||
|
||||
FileUtil.del(file1);
|
||||
FileUtil.del(file2);
|
||||
|
||||
try (ExcelWriter writer = new ExcelWriter(file1)) {
|
||||
writer.writeRow(map, true);
|
||||
writer.autoSizeColumnAll(2f);
|
||||
}
|
||||
|
||||
try (BigExcelWriter writer = new BigExcelWriter(file2)) {
|
||||
writer.writeRow(map, true);
|
||||
writer.autoSizeColumnAll(2f);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user