This commit is contained in:
Looly 2023-06-26 12:14:03 +08:00
parent 4982f49a37
commit 97bf3c0acc

View File

@ -0,0 +1,31 @@
/*
* Copyright (c) 2023 looly(loolly@aliyun.com)
* Hutool is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
*/
package cn.hutool.poi.excel;
import cn.hutool.core.io.FileUtil;
import org.junit.Ignore;
import org.junit.Test;
public class ExcelReaderToWriterTest {
@Test
@Ignore
public void getWriterTest() {
final ExcelReader reader = ExcelUtil.getReader("d:/test/issue3120.xlsx");
final ExcelWriter writer = reader.getWriter();
writer.writeCellValue(0, 0, "替换内容222222");
writer.flush(FileUtil.file("d:/test/2.xlsx"));
writer.closeWithoutFlush();
}
}