mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package cn.hutool.poi.ofd;
|
||||
|
||||
import cn.hutool.core.io.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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user