网上文章代码弄来报错 也没有教程 官网的例子不知道怎么用
就从最简单的开始 新建一个word文档、写上一行hello world
------解决方案--------------------
http://apachepoi.com/
楼主可以看看
我也是菜鸟一枚,不过实现了word文档的读取
------解决方案--------------------
Simple Demo -->
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();
}
------解决方案--------------------