poi操作word没有教程吗
网上文章代码弄来报错 也没有教程 官网的例子不知道怎么用
就从最简单的开始 新建一个word文档、写上一行hello world
[解决办法]
public static void write() throws Exception
{
ByteArrayInputStream bs = new ByteArrayInputStream(new String("hello world 你好 中国").getBytes());
POIFSFileSystem fs = new POIFSFileSystem();
fs.getRoot().createDocument("WordDocument", bs);
FileOutputStream fos = new FileOutputStream("e:\\Will.doc");
fs.writeFilesystem(fos);
fos.flush();
fos.close();
bs.close();
}