请问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文档中文乱码,请问有什么解决方式吗? 展开
先用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文档中文乱码,请问有什么解决方式吗? 展开
2个回答
2018-12-06
展开全部
有中文乱码一般都是字符编码的问题,那你就是设置一下字符编码看看能不能解决这个问题。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |