日期:2014-05-20  浏览次数:20603 次

poi操作word没有教程吗
网上文章代码弄来报错 也没有教程 官网的例子不知道怎么用

就从最简单的开始 新建一个word文档、写上一行hello world

------解决方案--------------------
引用:
网上文章代码弄来报错 也没有教程 官网的例子不知道怎么用

就从最简单的开始 新建一个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();
        
    }

------解决方案--------------------
该回复于2013-04-25 17:00:16被管理员删除