加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

仿百度文库方案[openoffice.org 3+swftools+flexpaper](四) 之

发布时间:2020-12-15 17:56:45 所属栏目:百科 来源:网络整理
导读:作者: 焱龙 出处: http://star-studio.cnblogs.com/ 申明:作者写博是为了总结经验,和以后的工作参考之用。 如需转载,请尽量保留此申明,并在文章页面明显位置给出原文连接。谢谢! 仿百度文库方案[openoffice.org 3+swftools+flexpaper](四) 之 使用swf

作者: 焱龙
出处: http://star-studio.cnblogs.com/
申明:作者写博是为了总结经验,和以后的工作参考之用。
如需转载,请尽量保留此申明,并在文章页面明显位置给出原文连接。谢谢!


仿百度文库方案[openoffice.org 3+swftools+flexpaper](四) 之 使用swftools将pdf转换为swf

第四步,使用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>

复制代码

在项目DocConverter根目录,右键属性 - >Run as - >MyEclipse Server Application

发布到之前安装的Tomcat 6.0的根目录,然后用url路径访问:Http://localhost:8080/DocConverter/MyPDF2SWFTest.jsp?进行测试。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读