java OpenOffice Pdf2Swf FlexPaper 使用总结

package theone.util;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.ConnectException;
import java.util.Locale;
import java.util.ResourceBundle;
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 OpenOfficeUtil {

 private static String OpenOfficeBasePath = "D:\\Program Files\\OpenOffice.org 3";

 private static final String cmd_service = "program\\soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";

 static {
  ResourceBundle rb = ResourceBundle.getBundle("OpenOfficeUtil",
    Locale.getDefault());
  OpenOfficeBasePath = rb.getString("path");
  System.out.println(OpenOfficeBasePath);
 }

 /**
  * 将Office文档转换为PDF. 运行该函数需要用到OpenOffice, OpenOffice下载地址为
  * http://www.openoffice.org/
  * 
  * <pre>
  * 方法示例: 
  * String sourcePath = "F:\\office\\source.doc"; 
  * String destFile = "F:\\pdf\\dest.pdf"; 
  * Converter.office2PDF(sourcePath, destFile);
  * </pre>
  * 
  * @param sourceFile
  *            源文件, 绝对路径. 可以是Office2003-2007全部格式的文档, Office2010的没测试. 包括.doc,
  *            .docx, .xls, .xlsx, .ppt, .pptx等. 示例: F:\\office\\source.doc
  * @param destFile
  *            目标文件. 绝对路径. 示例: F:\\pdf\\dest.pdf
  * @return 操作成功与否的提示信息. 如果返回 -1, 表示找不到源文件, 或url.properties配置错误; 如果返回 0,
  *         则表示操作成功; 返回1, 则表示转换失败
  * @throws Exception
  */
 public static int office2PDF(String sourceFile, String destFile)
   throws Exception {
  try {
   File inputFile = new File(sourceFile);
   if (!inputFile.exists()) {
    return -1;// 找不到源文件, 则返回-1
   }
   // 如果目标路径不存在, 则新建该路径
   File outputFile = new File(destFile);
   if (!outputFile.getParentFile().exists()) {
    outputFile.getParentFile().mkdirs();
   }
   String OpenOffice_HOME = OpenOfficeBasePath;// 这里是OpenOffice的安装目录,
   // 如果从文件中读取的URL地址最后一个字符不是 '\',则添加'\'
   if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {
    OpenOffice_HOME += "\\";
   }
   // 启动OpenOffice的服务
   String command = OpenOffice_HOME + cmd_service;
   Process pro = Runtime.getRuntime().exec(command);
   System.out.println(command);
   // connect to an OpenOffice.org instance running on port 8100
   OpenOfficeConnection connection = new SocketOpenOfficeConnection(
     "127.0.0.1", 8100);
   connection.connect();
   // convert
   DocumentConverter converter = new OpenOfficeDocumentConverter(
     connection);
   converter.convert(inputFile, outputFile);
   // close the connection
   connection.disconnect();
   // 关闭OpenOffice服务的进程
   pro.destroy();
   return 0;
  } catch (FileNotFoundException e) {
   e.printStackTrace();
   return -1;
  } catch (ConnectException e) {
   e.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  }
  return 1;
 }

}


 

 

package theone.util;

import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.text.MessageFormat;
import java.util.Locale;
import java.util.ResourceBundle;

public class Pdf2SwfUtil {

	private static String pdf2swfPath = "D:\\Program Files\\SWFTools\\pdf2swf.exe";
	private static String cmd="{0} -o \"{1}\\{2}\" {3} -s flashversion=9 \"{4}\"";
	private static String fontCode="<SPAN style=\"COLOR: #ff0000\">-s languagedir={0}-chinese-simplified</SPAN>";
	static{
		ResourceBundle rb = ResourceBundle.getBundle("Pdf2SwfUtil",
				Locale.getDefault());
		pdf2swfPath = rb.getString("path");
	}
	private static String getCmdStr(String sourcePath, String destPath,
			String fileName){
		return MessageFormat.format(cmd, pdf2swfPath,destPath,fileName,"",sourcePath);
	}
	
	public static int convertPDF2SWF(String sourcePath, String destPath,
			String fileName) throws IOException {
		// 目标路径不存在则建立目标路径
		File dest = new File(destPath);
		if (!dest.exists())
			dest.mkdirs();

		// 源文件不存在则返回
		File source = new File(sourcePath);
		if (!source.exists())
			return 0;

		// 调用pdf2swf命令进行转换
		String command = getCmdStr(sourcePath,destPath,fileName);
		System.out.println(command);

		Process pro = Runtime.getRuntime().exec(command);

		BufferedReader bufferedReader = new BufferedReader(
				new InputStreamReader(pro.getInputStream()));
		while (bufferedReader.readLine() != null)
			;

		try {
			pro.waitFor();
		} catch (InterruptedException e) {
			e.printStackTrace();
		}

		return pro.exitValue();

	}
}

 

 

Java利用OpenOffice将word等office文档转换成PDF  

2012-12-10 19:02:34|  分类: JAVA |  标签:openoffice   |字号 订阅

Java利用OpenOffice将word等office文档转换成PDF


 OpenOffice.org 是一套跨平台的办公室软件套件,能在 Windows、Linux、MacOS X (X11)、和 Solaris 等操作系统上执行。它与各个主要的办公室软件套件兼容。OpenOffice.org 是自由软件,任何人都可以免费下载、使用、及推广它。


OpenOffice org 的 API 以 UNO (UniversalNetwork Object) 写成,所以本身是电脑语言中立的。现在来说,OpenOffice org主要是以 C++ 撰写的,但也能以 Java(TM) 来撰写。

1. 需要用的软件

    OpenOffice 下载地址http://www.openoffice.org/

    JodConverter 下载地址http://sourceforge.net/projects/jodconverter/files/JODConverter/,也可以直接从附件里面下载

 

 

2.启动OpenOffice的服务

    我到网上查如何利用OpenOffice进行转码的时候,都是需要先用cmd启动一个soffice服务,启动的命令是:soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;"。

    但是实际上,对于我的项目,进行转码只是偶尔进行,然而当OpenOffice的转码服务启动以后,该进程(进程名称是soffice.exe)会一直存在,并且大约占100M的内存,感觉非常浪费。于是我就想了一个办法,可以将执行该服务的命令直接在JAVA代码里面调用,然后当转码完成的时候,直接干掉这个进程。在后面的JAVA代码里面会有解释。

    所以,实际上,这第2步可以直接跳过

 

 

3.将JodConverter相关的jar包添加到项目中

    将JodConverter解压缩以后,把lib下面的jar包全部添加到项目中

 

 

4. 下面就是重点喽,详见Java代码解析

 

附件里面有现成的可以用的项目示例,直接导入eclipse就可以运行

 

Java代码 
  1. /** 
  2.      * 将Office文档转换为PDF. 运行该函数需要用到OpenOffice, OpenOffice下载地址为 
  3.      * http://www.openoffice.org/ 
  4.      *  
  5.      * <pre> 
  6.      * 方法示例: 
  7.      * String sourcePath = "F:\\office\\source.doc"; 
  8.      * String destFile = "F:\\pdf\\dest.pdf"; 
  9.      * Converter.office2PDF(sourcePath, destFile); 
  10.      * </pre> 
  11.      *  
  12.      * @param sourceFile 
  13.      *            源文件, 绝对路径. 可以是Office2003-2007全部格式的文档, Office2010的没测试. 包括.doc, 
  14.      *            .docx, .xls, .xlsx, .ppt, .pptx等. 示例: F:\\office\\source.doc 
  15.      * @param destFile 
  16.      *            目标文件. 绝对路径. 示例: F:\\pdf\\dest.pdf 
  17.      * @return 操作成功与否的提示信息. 如果返回 -1, 表示找不到源文件, 或url.properties配置错误; 如果返回 0, 
  18.      *         则表示操作成功; 返回1, 则表示转换失败 
  19.      */  
  20.     public static int office2PDF(String sourceFile, String destFile) {  
  21.         try {  
  22.             File inputFile = new File(sourceFile);  
  23.             if (!inputFile.exists()) {  
  24.                 return -1;// 找不到源文件, 则返回-1  
  25.             }  
  26.   
  27.             // 如果目标路径不存在, 则新建该路径  
  28.             File outputFile = new File(destFile);  
  29.             if (!outputFile.getParentFile().exists()) {  
  30.                 outputFile.getParentFile().mkdirs();  
  31.             }  
  32.   
  33.             String OpenOffice_HOME = "D:\\Program Files\\OpenOffice.org 3";//这里是OpenOffice的安装目录, 在我的项目中,为了便于拓展接口,没有直接写成这个样子,但是这样是绝对没问题的  
  34.             // 如果从文件中读取的URL地址最后一个字符不是 '\',则添加'\'  
  35.             if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {  
  36.                 OpenOffice_HOME += "\\";  
  37.             }  
  38.             // 启动OpenOffice的服务  
  39.             String command = OpenOffice_HOME  
  40.                     + "program\\soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;urp;\"";  
  41.             Process pro = Runtime.getRuntime().exec(command);  
  42.             // connect to an OpenOffice.org instance running on port 8100  
  43.             OpenOfficeConnection connection = new SocketOpenOfficeConnection(  
  44.                     "127.0.0.1"8100);  
  45.             connection.connect();  
  46.   
  47.             // convert  
  48.             DocumentConverter converter = new OpenOfficeDocumentConverter(  
  49.                     connection);  
  50.             converter.convert(inputFile, outputFile);  
  51.   
  52.             // close the connection  
  53.             connection.disconnect();  
  54.             // 关闭OpenOffice服务的进程  
  55.             pro.destroy();  
  56.   
  57.             return 0;  
  58.         } catch (FileNotFoundException e) {  
  59.             e.printStackTrace();  
  60.             return -1;  
  61.         } catch (ConnectException e) {  
  62.             e.printStackTrace();  
  63.         } catch (IOException e) {  
  64.             e.printStackTrace();  
  65.         }  
  66.   
  67.         return 1;  
  68.     }

 

 

 


参考资料(解决flexpapaer一直处于加载状态的 转载)

     本文章只研究演示Flexpaper在WEB页面上的使用,我们要下载一个Flash版本的FlexPaper,这里我选择了FlexPaper_1.5.0_flash。

下载地址:http://code.google.com/p/flexpaper/downloads/list

下载、解压后,可以看到包含如下文件: 

       

主要文件、文件夹说明:

Examples  存放Flexpaper使用例子

Js        存放Flexpaper调用的JS文件

Php       存放PHP使用的文档、JS、库、SWF文件

Index.html 例子主页

FlexpaperViewer Flexpaper的核心文件,用于浏览PDF

Paper.swf  官方的默认宣传文件

playerProductInstall.swf  如果客户端浏览器的flashplayer版本过低,他是不会嵌入你的swf,而是嵌入这个playerProductInstall.swf到页面上下载flashplayer的安装文件。

 

下面是第一个Flexpaper例子

一个最简单的例子,我们主要用到FlexpaperViewer.swf、JS文件夹中的flexpaper_flash.js

创建HTML页面test.html,代码如下:

<HTML>

 <HEAD>

  <TITLE>ajava.org Flexpaper例子</TITLE>

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

 </HEAD>

<BODY>

<script type="text/javascript" src="js/flexpaper_flash.js"></script>

 

<div style="position:absolute;left:10px;top:10px;">

            <p id="viewerPlaceHolder" style="width:660px;height:553px;display:block">Document loading..</p>

            <script type="text/javascript">                

                var fp = new FlexPaperViewer(  

                         'FlexPaperViewer',

                         'viewerPlaceHolder', { config : {

                         SwfFile : escape('FusionCharts.swf'),

                         Scale : 0.6,

                         ZoomTransition : 'easeOut',

                         ZoomTime : 0.5,

                         ZoomInterval : 0.2,

                         FitPageOnLoad : true,

                         FitWidthOnLoad : false,

                         FullScreenAsMaxWindow : false,

                         ProgressiveLoading : false,

                         MinZoomSize : 0.2,

                         MaxZoomSize : 5,

                         SearchMatchAll : false,

                         InitViewMode : 'Portrait',

                         PrintPaperAsBitmap : false,

                         ViewModeToolsVisible : true,

                         ZoomToolsVisible : true,

                         NavToolsVisible : true,

                         CursorToolsVisible : true,

                         SearchToolsVisible : true,                        

                         localeChain: 'en_US' 

                         }});  

            </script>

</div>

</BODY>

</HTML>

 

把第三章部分生产的FusionCharts.swf复制到FlexPaper根目录下,我这里是 F:\FlexPaper1.5.0flash,这一步是必须的,如果不是test.html怎样读取到FusionCharts.swf呢?

测试:

打开浏览器,输入test.html的本地地址,就可以看到FlexPaper的浏览效果。这里我分别在前言中的3种测试环境,结果都没问题,效果如下图:

如果你用FF浏览器,出现提示“SecurityError: Error #2148: SWF 文件 file:/// F:/FlexPaper1.5.0flash /FlexPaperViewer.swf 不能访问本地资源FusionCharts.swf。只有仅限于文件系统的 SWF 文件和可信的本地 SWF 文件可以访问本地资源。”,或者IE一直都处于加载状态,这种情况,是由于Flexpaper还没获得Adobe Flash的信任,这时你可以请访问 http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.html#119065,选择始终允许,把FlexPaper1.5.0flash文件夹添加到信任列表中。

 

 

你可能感兴趣的:(java OpenOffice Pdf2Swf FlexPaper 使用总结)