HTML页面内容转为带有格式的Word文档保存(Ueditor编辑器内的内容)
从网上找了这个方法,可以写成功文档,但是文档内容会乱码,请大神赐教
String uContent = “<html><p><span><span>标题</span></span><br/></p><p>我想要3个<em>苹果</em>。</p></html>;byte b[] = uContent.getBytes("utf-8");
ByteArrayInputStream bais = new ByteArrayInputStream(b);
//生成Word文档
POIFSFileSystem poifs = new POIFSFileSystem();
DirectoryEntry directory = poifs.getRoot();
DocumentEntry documentEntry = directory.createDocument("WordDocument", bais);//生成word
FileOutputStream ostream = new FileOutputStream(WordPath);
poifs.writeFilesystem(ostream);//把文档写到指定位置
bais.close();
ostream.close();
这是文档乱码的样子
回答
byte b[] = uContent.getBytes("utf-8"); 换成gbk试试
以上是 HTML页面内容转为带有格式的Word文档保存(Ueditor编辑器内的内容) 的全部内容, 来源链接: utcz.com/a/29862.html