1、软件环境:
2、所需组件:
- openoffice:启动openoffice服务:soffice.exe -headless -nologo -norestore -accept=socket,host=localhost,port=8100;urp;StarOffice.ServiceManager
- swftools
- flexpaper : flexpaper_flash_debug.js,flexpaper_flash.js,jquery.js , FlexPaperViewer.swf
- OpenDocument文档转换器 JODConverter, 主要用它的jodconverter-2.2.2.jar包
3、程序源码:
- java转换器的程序代码:
- package correy.erp.util.converter;
- import java.io.BufferedInputStream;
- import java.io.File;
- import java.io.IOException;
- import java.io.InputStream;
- import com.artofsolving.jodconverter.DocumentConverter;
- import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;
- import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;
- import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;
- public class DocConverter {
- private static final int environment = 1;// 环境 1:windows 2:linux
- private String fileString;// (只涉及pdf2swf路径问题)
- private String outputPath = "";// 输入路径 ,如果不设置就输出在默认的位置
- private String fileName;
- private File pdfFile;
- private File swfFile;
- private File docFile;
- public DocConverter(String fileString) {
- ini(fileString);
- }
- /**
- * 重新设置file
- *
- * @param fileString
- */
- public void setFile(String fileString) {
- ini(fileString);
- }
- /**
- * 初始化
- *
- * @param fileString
- */
- private void ini(String fileString) {
- this.fileString = fileString;
- fileName = fileString.substring(0, fileString.lastIndexOf("."));
- docFile = new File(fileString);
- pdfFile = new File(fileName + ".pdf");
- swfFile = new File(fileName + ".swf");
- }
- /**
- * 转为PDF
- *
- * @param file
- */
- private void doc2pdf() throws Exception {
- if (docFile.exists()) {
- if (!pdfFile.exists()) {
- OpenOfficeConnection connection = new SocketOpenOfficeConnection("127.0.0.1", 8100);
- try {
- connection.connect();
- DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
- converter.convert(docFile, pdfFile);
- // close the connection
- connection.disconnect();
- System.out.println("****pdf转换成功,PDF输出:" + pdfFile.getPath()+ "****");
- } catch (java.net.ConnectException e) {
- e.printStackTrace();
- System.out.println("****swf转换器异常,openoffice服务未启动!****");
- throw e;
- } catch (com.artofsolving.jodconverter.openoffice.connection.OpenOfficeException e) {
- e.printStackTrace();
- System.out.println("****swf转换器异常,读取转换文件失败****");
- throw e;
- } catch (Exception e) {
- e.printStackTrace();
- throw e;
- }
- } else {
- System.out.println("****已经转换为pdf,不需要再进行转化****");
- }
- } else {
- System.out.println("****swf转换器异常,需要转换的文档不存在,无法转换****");
- }
- }
- /**
- * 转换成 swf
- */
- @SuppressWarnings("unused")
- private void pdf2swf() throws Exception {
- Runtime r = Runtime.getRuntime();
- if (!swfFile.exists()) {
- if (pdfFile.exists()) {
- if (environment == 1) {// windows环境处理
- try {
- Process p = r.exec("E:/Program Files/SWFTools/pdf2swf.exe "+ pdfFile.getPath() + " -o "+ swfFile.getPath() + " -T 9");
- System.out.print(loadStream(p.getInputStream()));
- System.err.print(loadStream(p.getErrorStream()));
- System.out.print(loadStream(p.getInputStream()));
- System.err.println("****swf转换成功,文件输出:"
- + swfFile.getPath() + "****");
- if (pdfFile.exists()) {
- pdfFile.delete();
- }
- } catch (IOException e) {
- e.printStackTrace();
- throw e;
- }
- } else if (environment == 2) {// linux环境处理
- try {
- Process p = r.exec("pdf2swf " + pdfFile.getPath()
- + " -o " + swfFile.getPath() + " -T 9");
- System.out.print(loadStream(p.getInputStream()));
- System.err.print(loadStream(p.getErrorStream()));
- System.err.println("****swf转换成功,文件输出:"
- + swfFile.getPath() + "****");
- if (pdfFile.exists()) {
- pdfFile.delete();
- }
- } catch (Exception e) {
- e.printStackTrace();
- throw e;
- }
- }
- } else {
- System.out.println("****pdf不存在,无法转换****");
- }
- } else {
- System.out.println("****swf已经存在不需要转换****");
- }
- }
- static String loadStream(InputStream in) throws IOException {
- int ptr = 0;
- in = new BufferedInputStream(in);
- StringBuffer buffer = new StringBuffer();
- while ((ptr = in.read()) != -1) {
- buffer.append((char) ptr);
- }
- return buffer.toString();
- }
- /**
- * 转换主方法
- */
- @SuppressWarnings("unused")
- public boolean conver() {
- if (swfFile.exists()) {
- System.out.println("****swf转换器开始工作,该文件已经转换为swf****");
- return true;
- }
- if (environment == 1) {
- System.out.println("****swf转换器开始工作,当前设置运行环境windows****");
- } else {
- System.out.println("****swf转换器开始工作,当前设置运行环境linux****");
- }
- try {
- doc2pdf();
- pdf2swf();
- } catch (Exception e) {
- e.printStackTrace();
- return false;
- }
- if (swfFile.exists()) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * 返回文件路径
- *
- * @param s
- */
- public String getswfPath() {
- if (swfFile.exists()) {
- String tempString = swfFile.getPath();
- tempString = tempString.replaceAll("\\\\", "/");
- return tempString;
- } else {
- return "";
- }
- }
- /**
- * 设置输出路径
- */
- public void setOutputPath(String outputPath) {
- this.outputPath = outputPath;
- if (!outputPath.equals("")) {
- String realName = fileName.substring(fileName.lastIndexOf("/"),
- fileName.lastIndexOf("."));
- if (outputPath.charAt(outputPath.length()) == '/') {
- swfFile = new File(outputPath + realName + ".swf");
- } else {
- swfFile = new File(outputPath + realName + ".swf");
- }
- }
- }
- }
- java文件上传并调用转换器对文件进行转换:
- String newFileName = null;
- // 得到当前时间自1970年1月1日0时0秒开始流失的毫秒数,将这个毫秒数作为上传文件的文件名
- long now = new Date().getTime();
- // 得到保存上传文件的目录的真实路径
- String path = ServletActionContext.getServletContext().getRealPath(uploadDir);
- path=path.replace( '\\', '/' );
- newFileName=now+agreement.getAgreeNum()+fileName.substring(fileName.lastIndexOf( "."));
- File dir = new File(path);
- dir.mkdirs();
- //删除旧文件
- if(!Stringer.isNullOrEmpty(agreement.getPath()))
- {
- File oldFile= new File(dir,agreement.getPath().substring(agreement.getPath().lastIndexOf("/")+1));
- if(oldFile.exists())
- {
- oldFile.delete();
- }
- }
- agreement.setPath(uploadDir+ "/"+newFileName);
- agreementDao.saveAgreement(agreement);
- BufferedOutputStream bos = null;
- BufferedInputStream bis = null;
- // 将上传的文件保存在本地目录
- File newFile = null;
- try {
- FileInputStream fis = new FileInputStream(file);
- bis = new BufferedInputStream(fis);
- newFile = new File(dir, newFileName);
- FileOutputStream fos = new FileOutputStream(newFile);
- bos = new BufferedOutputStream(fos);
- byte[] buf = new byte[1024];
- int len = -1;
- while ((len = bis.read(buf)) != -1) {
- bos.write(buf, 0, len);
- }
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception();
- } finally {
- try {
- if (null != bis)
- bis.close();
- if (null != bos)
- bos.close();
- } catch (Exception e) {
- e.printStackTrace();
- throw new Exception();
- }
- }
- DocConverter d = new DocConverter(converfilename);
- d.conver();
JSP页面预览文档
- <%@ page language= "java" contentType ="text/html; charset=UTF-8"
- pageEncoding="UTF-8" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <script type="text/javascript" src=" ${ctx}/js/flexpaper/jquery.js"></ script>
- <script type="text/javascript" src=" ${ctx}/js/flexpaper/flexpaper_flash.js"></script >
- <script type="text/javascript" src=" ${ctx}/js/flexpaper/flexpaper_flash_debug.js"></script >
- <style type="text/css" media="screen">
- html, body { height:100%; }
- body { margin :0; padding:0; overflow:auto ; }
- #flashContent { display :none; }
- </style>
- <title> 文档在线预览系统 </title>
- </head>
- <body>
- <div style="text-align : center;width: 100%;" id= "c">
- <a id= "viewerPlaceHolder" style="width :820px;height:650px;" ></a>
- <script type="text/javascript" >
- var width=$("#c" ).width();
- var height=$(document).height();
- $( "#viewerPlaceHolder").css("width" ,width*0.94+"px");
- $( "#viewerPlaceHolder").css("height" ,height+"px");
- $("#viewerPlaceHolder" ).css("padding-left",width*0.03+ "px");
- $( "#viewerPlaceHolder").css("display" ,"block" );
- var name="${param.name}" ;
- name=name.substring(0, name.lastIndexOf( "."))+".swf" ;
- var fp = new FlexPaperViewer(
- '${ctx}/swf/FlexPaperViewer',
- 'viewerPlaceHolder', { config : {
- SwfFile : escape( '${ctx}/'+name),
- Scale : 1.0,
- ZoomTransition : 'easeOut',
- ZoomTime : 0.5,
- ZoomInterval : 0.2,
- FitPageOnLoad : false,
- FitWidthOnLoad : false,
- FullScreenAsMaxWindow : false,
- ProgressiveLoading : false,
- MinZoomSize : 0.2,
- MaxZoomSize : 5,
- SearchMatchAll : false,
- InitViewMode : 'SinglePage',
- ViewModeToolsVisible : true,
- ZoomToolsVisible : true,
- NavToolsVisible : true,
- CursorToolsVisible : true,
- SearchToolsVisible : true,
- localeChain: 'zh_CN'
- }});
- </script>
- </div>
- </body>
- </html>
相关推荐
标题 "openoffice+swftools+flexpaper在线预览文档" 涉及到的是一个技术解决方案,用于在Web环境中实现文档的在线预览。这个方案主要包括三个关键组件:OpenOffice、SwfTools和FlexPaper。 1. **OpenOffice**: ...
### Java+FlexPaper+swfTools_仿百度文库文档在线预览系统设计与实现 #### 关键技术点概述 本文档将详细阐述一个模仿百度文库文档在线预览系统的实现过程,该系统通过结合Java、FlexPaper和swfTools等技术手段,...
鉴于网上找的在线浏览都略去了flexpaper ,于是自己花费几个小时完成了openOffice + swfTools + flexpaper 技术实现仿百度文库的在线浏览。功能已经实现,需要的自己下去优化一下,修改下openoffice和SWFTOOLS安装...
- 使用JavaScript创建FlexPaper实例,传入之前准备好的配置文件,初始化文档预览。 5. **服务器端逻辑**: - 当用户请求预览一个文档时,服务器端接收到请求,根据文档类型选择合适的转换方法。 - 将转换后的...
### Java+FlexPaper+swfTools 仿百度文库文档在线预览系统设计与实现 本文将详细介绍如何使用Java结合FlexPaper和swfTools技术来实现一个类似百度文库的文档在线预览系统。该系统的主要功能是允许用户在线浏览各种...
Java结合FlexPaper、SWFTools和OpenOffice是一个常见的解决方案,用于将Microsoft Office文档转换为SWF格式,以便在Web上以交互式的方式展示。这个过程涉及到多个步骤和技术,以下是详细的解释: 1. **Java**: Java...
根据提供的文档标题、描述、标签以及部分内容,本文将详细介绍如何使用Java、FlexPaper及swfTools来设计并实现一个类似于百度文库的文档在线预览系统。本系统旨在让用户能够在线预览各种类型的文档,无需下载或安装...
Java、SWFTools、OpenOffice 和 FlexPaper 是构建在线阅读平台的关键技术,它们共同作用于创建一个高效且用户友好的文档预览系统。这个实例主要关注如何将这些工具结合使用,为用户提供PDF、DOC等常见格式文档的在线...
仿百度文库方案[openoffice.org 3+swftools+flexpaper]对于不会写的菜鸟可以在几分钟内入门,里面有现成的代码,并且有详细流程。内附完整完美安装包,让你不虚费力去四处寻找。(openoffice安装包过大这里我会给出...
文库openoffice.org 3+swftools+flexpaper word ppt excel 等转为pdf 转为swf
本文主要介绍了使用 Java、FlexPaper 和 swfTools 实现在线文档预览系统的设计和实现。该系统可以将上传的文档(包括 ppt、word、excel、txt 等)转换为 flash 支持的 swf 文件,并使用 FlexPaper 插件实现在线播放...
本文主要探讨了三个关键工具:OpenOffice、FlexPaper和Swftools,它们共同构成了一个强大的免费在线文档预览解决方案。 首先,OpenOffice是一款开源的办公软件套件,它可以处理包括Microsoft Office格式在内的多种...
这里提到的技术栈“openoffcie+swftools+flexpaper”恰好提供了这样的解决方案。下面将详细阐述这三款工具及其在实现该目标中的作用。 首先,OpenOffice是一个开源的办公软件套件,它包含了处理文字处理、电子表格...
总的来说,通过OpenOffice、SWFTools和FlexPaper的结合,Java开发者可以构建一个功能完善的附件预览系统,使得用户能够在浏览器环境中安全、便捷地查看各种文档格式。这种方法不仅提高了用户体验,也减少了对服务器...
需要下载的工具有:OpenOffice+flexpaper+swftools+jodcconverter * .启动OpenOffice的服务 * 1 win+R开启dos窗口 * 2 执行:cd C:\Program Files (x86)\OpenOffice 4\program * 3 执行:soffice -headless -...
总结来说,"FlexPaper+swfTools仿文档在线阅读"是一种利用Java、OpenOffice、swfTools和FlexPaper等技术,将多种格式的文档转换并以交互式的方式在Web上展示的解决方案。它为用户提供了一个便捷、跨平台的在线阅读...
是对openoffice+swftools+flexpaper的升级版,减少一次swf文件转换,及flexpaper只能预览十页内容,原文:http://blog.csdn.net/z69183787/article/details/17468039 内附:openoffice安装文件+PDF.js+源码+使用说明...
利用openoffice、swftools和flexPaper可以实现从Office文件到PDF,再到SWF格式的转换,最终通过flexPaper库来在线展示这些文件。 首先,使用openoffice进行文档转换。OpenOffice是一个开源的办公软件套件,可以处理...
通过以上步骤,一个简单的Java FlexPaper SWFTools在线预览系统得以实现,有效地保护了文档的安全性,只提供预览功能,避免了直接下载可能带来的风险。这样的系统对于企业内部文档管理系统或在线教育平台尤其有用。