请问用jacob将html转word中文乱码怎么解决?
源码://F:\\HTMLTOWORD\\temple.doc为模板,这里模板不动,复制了一个副本用于写入数据FileUtils.copyFile(newFile("F:...
源码:
// F:\\HTMLTOWORD\\temple.doc为模板,这里模板不动,复制了一个副本 用于写入数据
FileUtils.copyFile(new File("F:\\HTMLTOWORD\\temple.doc"),new File(newFileName));
// html文件转为word
officeUtils.html2Word("F:\\HTMLTOWORD\\editor.html",newFileName);
html2Word方法:
/**
* html文件转为Word
* @param html
* @param wordFile
*/
public void html2Word(String html, String wordFile){
openDocument(wordFile);
// 清空文档内容 由于直接复制模板(模板内容为空) 注释掉
/*selectAllContent();
insertText(null);*/
Dispatch.invoke(this.selection, "InsertFile", Dispatch.Method, new Object[] { html, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]);
}
这样将html转word后,中文是乱码的,要怎么解决这个问题呢?请指教下
html用到了jsoup
String html="<p>...</p>......"
Document document = Jsoup.parse(html)
FileWriter fw = new FileWriter("F:\\HTMLTOWORD\\editor.html");
fw.write(document.html(), 0, document.html().length());// 写入文件
然后再将得到的editor.html文件通过上面的方法转成word文档 展开
// F:\\HTMLTOWORD\\temple.doc为模板,这里模板不动,复制了一个副本 用于写入数据
FileUtils.copyFile(new File("F:\\HTMLTOWORD\\temple.doc"),new File(newFileName));
// html文件转为word
officeUtils.html2Word("F:\\HTMLTOWORD\\editor.html",newFileName);
html2Word方法:
/**
* html文件转为Word
* @param html
* @param wordFile
*/
public void html2Word(String html, String wordFile){
openDocument(wordFile);
// 清空文档内容 由于直接复制模板(模板内容为空) 注释掉
/*selectAllContent();
insertText(null);*/
Dispatch.invoke(this.selection, "InsertFile", Dispatch.Method, new Object[] { html, "", new Variant(false), new Variant(false), new Variant(false) }, new int[3]);
}
这样将html转word后,中文是乱码的,要怎么解决这个问题呢?请指教下
html用到了jsoup
String html="<p>...</p>......"
Document document = Jsoup.parse(html)
FileWriter fw = new FileWriter("F:\\HTMLTOWORD\\editor.html");
fw.write(document.html(), 0, document.html().length());// 写入文件
然后再将得到的editor.html文件通过上面的方法转成word文档 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询