文档附件在线查看(类似百度文库的实现)

2024-04-04 10:18

本文主要是介绍文档附件在线查看(类似百度文库的实现),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

需求:用户上传附件后,点击查看,可以在页面直接查看到附件内容,样式排版需要和附件文档里一致。另外可以查看附件信息,下载附件。

                   附件格式 为 excle word 文档,pdf 扫描件

分析:一个附件管理的功能 + 在线查看功能。


附件管理的功能好实现,略过。


在线查看,是通过一个播放器查看flash文件,网上例子很多。

flash播放器 搜索 找到了 FlexPaper  (项目中导入flexpaper文件,在显示页面指定路径即可显示)

[javascript]  view plain  copy
  1. <script type="text/javascript">  
  2.                     var fp = new FlexPaperViewer(    
  3.                              'hlbussiness/planbaseViewer/FlexPaperViewer',  
  4.                              'viewerPlaceHolder', { config : {  
  5.                              SwfFile : escape("${swfPath}"),<span style="white-space:pre">  </span>//swf文件路径  
  6.                              Scale : 0.6,  
  7.                              ZoomTransition : 'easeOut',  
  8.                              ZoomTime : 0.5,  
  9.                              ZoomInterval : 0.2,  
  10.                              FitPageOnLoad : true,  
  11.                              FitWidthOnLoad : true//适合初始页宽度大小的装载页  
  12.                              FullScreenAsMaxWindow : true,  
  13.                              ProgressiveLoading : false,  
  14.                              MinZoomSize : 0.2,  
  15.                              MaxZoomSize : 5,  
  16.                              SearchMatchAll : false,  
  17.                              InitViewMode : 'Portrait',  
  18.                              PrintPaperAsBitmap : false,  
  19.                              ViewModeToolsVisible : true,  
  20.                              ZoomToolsVisible : true,  
  21.                              NavToolsVisible : true,  
  22.                              CursorToolsVisible : true,  
  23.                              SearchToolsVisible : true,                          
  24.                              localeChain: 'zh_CN'  
  25.                      }});    
  26.                 </script>  


剩下要做的,是将用户上传的文件转为 swf。 

[java]  view plain  copy
  1. package com.function.util;  
  2.   
  3. import java.io.BufferedInputStream;  
  4. import java.io.File;  
  5. import java.io.FileNotFoundException;  
  6. import java.io.IOException;  
  7. import java.io.InputStream;  
  8. import java.net.ConnectException;  
  9. import java.util.ResourceBundle;  
  10.   
  11. import com.artofsolving.jodconverter.DocumentConverter;  
  12. import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;  
  13. import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;  
  14. import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;  
  15.   
  16. /** 
  17.  * 将文件转成swf格式 
  18.  *  
  19.  * @author Administrator 
  20.  *  
  21.  */  
  22. public class ConvertSwf {  
  23.   
  24.     /** 
  25.      * 入口方法-通过此方法转换文件至swf格式 
  26.      * @param filePath  上传文件所在文件夹的绝对路径 
  27.      * @param dirPath   文件夹名称 
  28.      * @param fileName  文件名称 
  29.      * @return          生成swf文件名 
  30.      */  
  31.     public String beginConvert(String filePath, String dirName, String fileName) {  
  32.         final String DOC = ".doc";  
  33.         final String DOCX = ".docx";  
  34.         final String XLS = ".xls";  
  35.         final String XLSX = ".xlsx";  
  36.         final String PDF = ".pdf";  
  37.         final String SWF = ".swf";  
  38.         final String TOOL = "pdf2swf.exe";  
  39.         String outFile = "";  
  40.         String fileNameOnly = "";  
  41.         String fileExt = "";  
  42.         if (null != fileName && fileName.indexOf(".") > 0) {  
  43.             int index = fileName.indexOf(".");  
  44.             fileNameOnly = fileName.substring(0, index);  
  45.             fileExt = fileName.substring(index).toLowerCase();  
  46.         }  
  47.         String inputFile = filePath + File.separator + fileName;  
  48.         String outputFile = "";  
  49.   
  50.         //如果是office文档,先转为pdf文件  
  51.         if (fileExt.equals(DOC) || fileExt.equals(DOCX) || fileExt.equals(XLS)  
  52.                 || fileExt.equals(XLSX)) {  
  53.             outputFile = filePath + File.separator + fileNameOnly + PDF;  
  54.             office2PDF(inputFile, outputFile);  
  55.             inputFile = outputFile;  
  56.             fileExt = PDF;  
  57.         }  
  58.   
  59.         if (fileExt.equals(PDF)) {  
  60.             String toolFile = filePath + File.separator + TOOL;  
  61.             outputFile = filePath + File.separator + fileNameOnly + SWF;  
  62.             convertPdf2Swf(inputFile, outputFile, toolFile);  
  63.             outFile = outputFile;  
  64.         }  
  65.         return outFile;  
  66.     }  
  67.   
  68.     /** 
  69.      * 将pdf文件转换成swf文件 
  70.      * @param sourceFile pdf文件绝对路径 
  71.      * @param outFile    swf文件绝对路径 
  72.      * @param toolFile   转换工具绝对路径 
  73.      */  
  74.     private void convertPdf2Swf(String sourceFile, String outFile,  
  75.             String toolFile) {  
  76.         String command = toolFile + " \"" + sourceFile + "\" -o  \"" + outFile  
  77.                 + "\" -s flashversion=9 ";  
  78.         try {  
  79.             Process process = Runtime.getRuntime().exec(command);  
  80.             System.out.println(loadStream(process.getInputStream()));  
  81.             System.err.println(loadStream(process.getErrorStream()));  
  82.             System.out.println(loadStream(process.getInputStream()));  
  83.             System.out.println("###--Msg: swf 转换成功");  
  84.         } catch (Exception e) {  
  85.             e.printStackTrace();  
  86.         }  
  87.     }  
  88.   
  89.     /** 
  90.      * office文档转pdf文件 
  91.      * @param sourceFile    office文档绝对路径 
  92.      * @param destFile      pdf文件绝对路径 
  93.      * @return 
  94.      */  
  95.     private int office2PDF(String sourceFile, String destFile) {  
  96.         ResourceBundle rb = ResourceBundle.getBundle("OpenOfficeService");  
  97.         String OpenOffice_HOME = rb.getString("OO_HOME");  
  98.         String host_Str = rb.getString("oo_host");  
  99.         String port_Str = rb.getString("oo_port");  
  100.         try {  
  101.             File inputFile = new File(sourceFile);  
  102.             if (!inputFile.exists()) {  
  103.                 return -1// 找不到源文件   
  104.             }  
  105.             // 如果目标路径不存在, 则新建该路径    
  106.             File outputFile = new File(destFile);  
  107.             if (!outputFile.getParentFile().exists()) {  
  108.                 outputFile.getParentFile().mkdirs();  
  109.             }  
  110.             // 启动OpenOffice的服务    
  111.             String command = OpenOffice_HOME  
  112.                     + "/program/soffice.exe -headless -accept=\"socket,host="  
  113.                     + host_Str + ",port=" + port_Str + ";urp;\"";  
  114.             System.out.println("###\n" + command);  
  115.             Process pro = Runtime.getRuntime().exec(command);  
  116.             // 连接openoffice服务  
  117.             OpenOfficeConnection connection = new SocketOpenOfficeConnection(  
  118.                     host_Str, Integer.parseInt(port_Str));  
  119.             connection.connect();  
  120.             // 转换   
  121.             DocumentConverter converter = new OpenOfficeDocumentConverter(  
  122.                     connection);  
  123.             converter.convert(inputFile, outputFile);  
  124.   
  125.             // 关闭连接和服务  
  126.             connection.disconnect();  
  127.             pro.destroy();  
  128.   
  129.             return 0;  
  130.         } catch (FileNotFoundException e) {  
  131.             System.out.println("文件未找到!");  
  132.             e.printStackTrace();  
  133.             return -1;  
  134.         } catch (ConnectException e) {  
  135.             System.out.println("OpenOffice服务监听异常!");  
  136.             e.printStackTrace();  
  137.         } catch (IOException e) {  
  138.             e.printStackTrace();  
  139.         }  
  140.         return 1;  
  141.     }  
  142.       
  143.     static String loadStream(InputStream in) throws IOException{  
  144.         int ptr = 0;  
  145.         in = new BufferedInputStream(in);  
  146.         StringBuffer buffer = new StringBuffer();  
  147.           
  148.         while ((ptr=in.read())!= -1){  
  149.             buffer.append((char)ptr);  
  150.         }  
  151.         return buffer.toString();  
  152.     }  
  153.   
  154. }  
这个类的运行的前提条件:

         1、安装openoffice,新建OpenOfficeService.properties文件,放到src目录下

[html]  view plain  copy
  1. OO_HOME = D:/Program Files/OpenOffice.org 3  
  2. oo_host = 127.0.0.1  
  3. oo_port =8100  

         2、下载 jodconverter-2.2.2 ,将lib目录所有jar 复制到项目 lib目录
         3、 下载swftools-0.9.2.exe 安装后,复制安装目录中到 pdf2swf.exe 到项目附件目录中。



在action中

[java]  view plain  copy
  1. //转换上传文件格式为swf  
  2.         String outPath = new ConvertSwf().beginConvert(dirPath, dirName, fileName);   
  3.         System.out.println("生成swf文件:" + outPath);  

即可生成文件名与原文件名一直的swf文件。

这篇关于文档附件在线查看(类似百度文库的实现)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/875512

相关文章

百度/小米/滴滴/京东,中台架构比较

小米中台建设实践 01 小米的三大中台建设:业务+数据+技术 业务中台--从业务说起 在中台建设中,需要规范化的服务接口、一致整合化的数据、容器化的技术组件以及弹性的基础设施。并结合业务情况,判定是否真的需要中台。 小米参考了业界优秀的案例包括移动中台、数据中台、业务中台、技术中台等,再结合其业务发展历程及业务现状,整理了中台架构的核心方法论,一是企业如何共享服务,二是如何为业务提供便利。

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

电力系统中的A类在线监测装置—APView400

随着电力系统的日益复杂和人们对电能质量要求的提高,电能质量在线监测装置在电力系统中得到广泛应用。目前,市场上的在线监测装置主要分为A类和B类两种类型,A类和B类在线监测装置主要区别在于应用场景、技术参数、通讯协议和扩展性。选择时应根据实际需求和应用场景综合考虑,并定期维护和校准。电能质量在线监测装置是用于实时监测电力系统中的电能质量参数的设备。 APView400电能质量A类在线监测装置以其多核

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount