mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
17 lines
338 B
Java
17 lines
338 B
Java
package cn.hutool.poi.ofd;
|
|
|
|
import cn.hutool.core.io.file.FileUtil;
|
|
import org.junit.Ignore;
|
|
import org.junit.Test;
|
|
|
|
public class OfdWriterTest {
|
|
|
|
@Test
|
|
@Ignore
|
|
public void writeTest(){
|
|
final OfdWriter ofdWriter = new OfdWriter(FileUtil.file("d:/test/test.ofd"));
|
|
ofdWriter.addText(null, "测试文本");
|
|
ofdWriter.close();
|
|
}
|
|
}
|