做了一段时间的文档格式转换,先前学习Jcom的时候,只是知道如和使用,经过一段时间的JNI学习,了解到了native的使用,以及与C、C++等代码的整合后,发现自己能够看懂Jcom的Java源码了,当时真的好想学习一下Windows编程,呵呵,跑题了,言归正传,以前一直都是用Jcom来操控微软提供的Office来做转换,也就是将doc、xls、ppt等格式转换成PDF格式,最后在转换成SWF格式在浏览器上像豆丁网那样观看,今天发现对wps格式的转换出现了乱码,经过检查发现,用微软的Office根本打不开wps的文件,而wps却可以打开微软的Office2007等众多格式,并同样留有Com接口,中国人就是厉害,这点不服不行,呵呵!经过一系列的翻阅API,发现有VB的Delphi甚至连JS怎么调用WPS的都有,可就是找不到个Java的,哎!自己研究吧,翻阅给VB的API的调用实例,最后还是找到了我想调用的方法,就是导出PDF方法……
每一个发现都是那么奇妙,那样令人喜悦,好了不多说了,看我代码吧!目前还有些地方需要改进,例如:如何返回一个文档页数? 对于一些特殊文档需要选择编码格式,例如转换txt的时候就会弹出框提示选择编码格式,如何自动选择?如果是将压缩包直接改了后缀名,然后转换,这样该如何判断文件是否已损坏,并返回不可转换信息等等……
希望看过这些问题的人,能够帮我寻找一下能够操控解决这些问题的方法,谢谢了!
package com.lj.transformer; import jp.ne.so_net.ga2.no_ji.jcom.IDispatch; import jp.ne.so_net.ga2.no_ji.jcom.ReleaseManager; /** * 文档转换 * @author LJ * 2010-6-24 0:21:38 */ public class Transformer { /** * 文档格式转换 * @param inPath 文档路径 * @param outPath pdf路径 */ public static void wps2pdf(String inDocPath,String outPdfPath){ ReleaseManager rm = new ReleaseManager(); try { //支持 wps、wpt、doc、docx、dot、txt、 IDispatch wpsApp = new IDispatch(rm, "WPS.Application"); // wpsApp.put("Visible", new Boolean(false)); //是否可见 IDispatch wpsDocuments = (IDispatch) wpsApp.get("Documents"); IDispatch wpsDocument = (IDispatch) wpsDocuments.method("Open", new String[]{inDocPath}); wpsDocument.method("ExportPdf", new String[]{outPdfPath}); wpsApp.method("Quit", null); } catch (Exception e) { e.printStackTrace(); } finally { rm.release(); } } public static void et2pdf(String inDocPath,String outPdfPath){ ReleaseManager rm = new ReleaseManager(); try { //et、ett、xls、xlsx、xlt、uof、prn、csv…… IDispatch wpsApp = new IDispatch(rm, "ET.Application"); // wpsApp.put("Visible", new Boolean(false)); //是否可见 IDispatch wpsDocuments = (IDispatch) wpsApp.get("Workbooks"); IDispatch wpsDocument = (IDispatch) wpsDocuments.method("Open", new String[]{inDocPath}); wpsDocument.method("ExportPdf", new String[]{outPdfPath}); wpsApp.method("Quit", null); } catch (Exception e) { e.printStackTrace(); } finally { rm.release(); } } public static void dps2pdf(String inDocPath,String outPdfPath){ ReleaseManager rm = new ReleaseManager(); try { //ppt、pps、pptx、ppsx、dps、dpt、pot、uof…… IDispatch wpsApp = new IDispatch(rm, "WPP.Application"); // wpsApp.put("Visible", new Boolean(false)); //是否可见 IDispatch wpsDocuments = (IDispatch) wpsApp.get("Presentations"); IDispatch wpsDocument = (IDispatch) wpsDocuments.method("Open", new String[]{inDocPath}); wpsDocument.method("ExportPdf", new String[]{outPdfPath}); wpsApp.method("Quit", null); } catch (Exception e) { e.printStackTrace(); } finally { rm.release(); } } public static void main(String[] args) throws Exception { // wps2pdf("D:\\转换测试\\aaa.wps","D:\\转换测试\\a1.pdf"); // wps2pdf("D:\\转换测试\\aaa.wps","D:\\转换测试\\a2.pdf"); // wps2pdf("D:\\转换测试\\aaa.wps","D:\\转换测试\\a3.pdf"); // // wps2pdf("D:\\转换测试\\ddd.doc","D:\\转换测试\\ddd01.pdf"); // wps2pdf("D:\\转换测试\\ddd.doc","D:\\转换测试\\ddd02.pdf"); // wps2pdf("D:\\转换测试\\rrr.dot","D:\\转换测试\\ddd0t.pdf"); // wps2pdf("D:\\转换测试\\www.wpt","D:\\转换测试\\www.pdf"); // // wps2pdf("D:\\转换测试\\rrr.rtf","D:\\转换测试\\rr01.pdf"); // wps2pdf("D:\\转换测试\\rrr.rtf","D:\\转换测试\\rr02.pdf"); // wps2pdf("D:\\转换测试\\rrr.rtf","D:\\转换测试\\rr03.pdf"); // // et2pdf("D:\\转换测试\\gg.et","D:\\转换测试\\gg01.pdf"); // et2pdf("D:\\转换测试\\gg.et","D:\\转换测试\\gg02.pdf"); // et2pdf("D:\\转换测试\\gg.et","D:\\转换测试\\gg03.pdf"); // et2pdf("D:\\转换测试\\xxx.xls","D:\\转换测试\\xx1.pdf"); // et2pdf("D:\\转换测试\\xxx.xls","D:\\转换测试\\xx2.pdf"); // et2pdf("D:\\转换测试\\xxx.xls","D:\\转换测试\\xx3.pdf"); // // dps2pdf("D:\\转换测试\\pp.dps","D:\\转换测试\\pp01.pdf"); // dps2pdf("D:\\转换测试\\pp.dps","D:\\转换测试\\pp02.pdf"); // dps2pdf("D:\\转换测试\\pp.dps","D:\\转换测试\\pp03.pdf"); // // dps2pdf("D:\\转换测试\\ttt.ppt","D:\\转换测试\\tt01.pdf"); // dps2pdf("D:\\转换测试\\ttt.ppt","D:\\转换测试\\tt02.pdf"); // dps2pdf("D:\\转换测试\\ttt.ppt","D:\\转换测试\\tt03.pdf"); } }
愿大家能够更完善它……