仿百度文库方案[openoffice.org 3+swftools+flexpaper](四) 之
发布时间:2020-12-15 18:48:00 所属栏目:百科 来源:网络整理
导读:第四步,使用swftools将pdf转换为swf ???? 建议下载swftools-0.9.1,笔者起先下载的是最新版的swftools-1.0版。貌似转换时出错,缺少什么组件。 ???? 继续笔者的DocConverter项目。笔者使用的开发环境是MyEclipse 9.0。 新建PDF2SWFUtil.java package com.io
第四步,使用swftools将pdf转换为swf ???? 建议下载swftools-0.9.1,笔者起先下载的是最新版的swftools-1.0版。貌似转换时出错,缺少什么组件。 ???? 继续笔者的DocConverter项目。笔者使用的开发环境是MyEclipse 9.0。 新建PDF2SWFUtil.java package com.iori.webapp.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; public class PDF2SWFUtil { /** * 利用SWFTools工具将pdf转换成swf,转换完后的swf文件与pdf同名 * @author iori * @param fileDir PDF文件存放路径(包括文件名) * exePath 转换器安装路径 * @throws IOException */ static synchronized void pdf2swf(String fileDir,String exePath) throws IOException { //文件路径 String filePath = fileDir.substring(0,fileDir.lastIndexOf("/")); 文件名,不带后缀 String fileName = fileDir.substring((filePath.length() + 1),fileDir.lastIndexOf(".")); Process pro = null; if (isWindowsSystem()) { 如果是windows系统 命令行命令 String cmd = exePath + " "" + fileDir + "" -o "" + filePath + "/" + fileName + ".swf""; Runtime执行后返回创建的进程对象 pro = Runtime.getRuntime().exec(cmd); } else { 如果是linux系统,路径不能有空格,而且一定不能用双引号,否则无法创建进程 String[] cmd = new String[3]; cmd[0] = exePath; cmd[1] = fileDir; cmd[2] = filePath + "/" + fileName + ".swf"; pro = Runtime.getRuntime().exec(cmd); } 非要读取一遍cmd的输出,要不不会flush生成文件(多线程) new DoOutput(pro.getInputStream()).start(); new DoOutput(pro.getErrorStream()).start(); try { 调用waitFor方法,是为了阻塞当前进程,直到cmd执行完 pro.waitFor(); } catch (InterruptedException e) { e.printStackTrace(); } } * 判断是否是windows操作系统 * @return private boolean isWindowsSystem() { String p = System.getProperty("os.name"); return p.toLowerCase().indexOf("windows") >= 0 ? true : false; } * 多线程内部类 * 读取转换时cmd进程的标准输出流和错误输出流,这样做是因为如果不读取流,进程将死锁 * iori class DoOutput extends Thread { public InputStream is; 构造方法public DoOutput(InputStream is) { this.is = is; } void run() { BufferedReader br = new BufferedReader(new InputStreamReader(this.is)); String str = null; try { 这里并没有对流的内容进行处理,只是读了一遍 while ((str = br.readLine()) != null); } catch (IOException e) { e.printStackTrace(); } finally { if (br != null) { try { br.close(); } catch (IOException e) { e.printStackTrace(); } } } } } * 测试main方法 * args void main(String[] args) { 转换器安装路径 String exePath = "c:/Program Files/SWFTools/pdf2swf.exe"; try { PDF2SWFUtil.pdf2swf("c:/temp/333.pdf",exePath); } catch (IOException e) { System.err.println("转换出错!"); e.printStackTrace(); } } } 在PDF2SWFUtil.java,右键属性 - >Run as - >Java Application ,输出main的测试结果。 ? 在jsp中执行 新建MyPDF2SWFTest.jsp <%@ page import="java.io.*"%> <%@ page import="com.artofsolving.jodconverter.openoffice.connection.*"%> <%@ page import="com.artofsolving.jodconverter.openoffice.converter.*"%> <%@ page import="com.artofsolving.jodconverter.*"%> <%@ page import="java.util.*"%> <%@ page import="com.iori.webapp.util.*"%> <% String exePath = "c:/Program Files/SWFTools/pdf2swf.exe"; try { PDF2SWFUtil.pdf2swf("c:/temp/333.pdf",exePath); } catch (IOException e) { System.err.println("转换出错!"); e.printStackTrace(); } %> <!-- 下面这些html可以去掉 --> <html> <head> <title>Simple jsp page</title> </head> <body>Place your content here</body> </html> (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |