本次导出还是使用之前freemarker模板导出word,这次出现手机端打不开是因为手机上的wps版本比较低,因为亲测ios和安卓系统都能打开,但是wps10版本的打开是源码或者乱码,所以找到了两种解决方案可以在低版本wps和microsoft office的手机上打开。
因为是省厅内网,手机上的应用是统一管理的,就当与内网里面有个应用市场,不是你说更新就更新,而且要提交一大串的申请。
这个可以电脑端 ios和安卓高版本的wps打开。
这个可以在电脑端和ios打开,安卓手机不管什么wps版本打开都乱码。
public static String createNewWord(String path) {
/**这个path是原来的生成的地址*/
ActiveXComponent _app = new ActiveXComponent("Word.Application");
_app.setProperty("Visible", Variant.VT_FALSE);
Dispatch documents = _app.getProperty("Documents").toDispatch();
// 打开FreeMarker生成的Word文档
Dispatch doc = Dispatch.call(documents, "Open",path, Variant.VT_FALSE, Variant.VT_TRUE).toDispatch();
// 另存为新的Word文档
String newPath ="D:/daye.doc";
Dispatch.call(doc, "SaveAs", newPath, Variant.VT_FALSE, Variant.VT_TRUE);
Dispatch.call(doc, "Close", Variant.VT_FALSE);
_app.invoke("Quit", new Variant[] {});
ComThread.Release();
return newPath;
}
Spire.Doc.jar
com.e-iceblue
e-iceblue
http://repo.e-iceblue.com/nexus/content/groups/public/
`
e-iceblue
spire.doc
3.11.0
##savePath是之前的地址 savePathResult是转完存的地址
Document document = new Document(savePath);
document.saveToFile(savePathResult, FileFormat.Docx);
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-scratchpad</artifactId>
<version>3.16</version>
</dependency>
try{
OPCPackage open = OPCPackage.open("D:\\home\\ketech\\zj_zby\\zj_zby\\log\\appfile\\20201127101756\\202011275666受害人现勘笔录.doc");
XWPFDocument xwpfDocument =new XWPFDocument(open);
FileOutputStream out = new FileOutputStream("D:\\hello.doc");
xwpfDocument.write(out);
System.out.println("eee");
// Document document = new Document("D:\\2020.doc");
// document.saveToFile("BBB.docx", FileFormat.Docx_2013);
//
// System.out.println("eee");
// FileInputStream in = new FileInputStream("D:\\2020.doc");
// XWPFDocument document = new XWPFDocument(in);
// HWPFDocument doc = new HWPFDocument(in);
// CharacterProperties props = new CharacterProperties();
// FileOutputStream out = new FileOutputStream("D:\\hello.doc");
// doc.write(out);
// out.flush();
// out.close();
}
catch (Throwable t)
{
t.printStackTrace();
}
其实上述三种方法都需要在进行操作一次原文档,最好的办法当然是更新手机应用版本,实在不行再这几个方法,而且这几种方法每个里面还有其他操作文档的方法,就看你怎么结合实际应用。
内网WPS版本统一升级了。。。。。就当自己锻炼升级好了,差不多花了四五天时间。