请问java中用jacob将html转word中文乱码怎么解决?

源码:先用jsoup得到Document对象Stringhtml="<p>...</p>......"Documentdocument=Jsoup.parse(html)... 源码:
先用jsoup得到Document 对象
String html="<p>...</p>......"
Document document = Jsoup.parse(html)
FileWriter fw = new FileWriter("...\\editor.html");
fw.write(document.html(), 0, document.html().length());// 写入文件

然后再将得到的editor.html文件通过jacob的方法转成word文档
//...\\temple.doc为模板,这里模板不动,复制了一个副本 用于写入数据
FileUtils.copyFile(new File("...\\temple.doc"),new File(newFileName));
// html文件转为word
officeUtils.html2Word("...\\editor.html",newFileName);

html2Word方法:
/**
* html文件转为Word
* @param html
* @param wordFile
*/
public void html2Word(String html, String wordFile){
openDocument(wordFile);//打开用doc模板生成的副本文件
Dispatch.invoke(this.selection, "InsertFile", Dispatch.Method, new Object[] { html, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]);
}

这样将html通过 Dispatch的invoke()方法将其转为word格式,得到的word文档中文乱码,请问有什么解决方式吗?
展开
 我来答
匿名用户
2018-12-06
展开全部
有中文乱码一般都是字符编码的问题,那你就是设置一下字符编码看看能不能解决这个问题。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
杨美美爱笑鬼
2018-12-05
知道答主
回答量:10
采纳率:66%
帮助的人:2万
展开全部
是否字符集不一致
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式