Javaはopenofficeを利用してdoc、docxをpdfインスタンスコードに変えます。


本論文の研究は主にJavaプログラミングを利用して、doc、docxをpdfの実現コードに変えます。具体的には以下の通りです。
1.必要なソフトウェア
OpenOffice、JodCoverter
2.OpenOfficeのサービスを開始する
私はオンラインでOpenOfficeを使ってトランスコードする場合は、まずcmdでsofficeサービスを起動する必要があります。起動するコマンドは:soffice-headless-accept=「socket、host=127..1、port=8100;urp。
しかし、実際には、私のプロジェクトに対しては、トランスコードはたまにしか行われませんでしたが、OpenOfficeのトランスコードサービスが起動した後は、プロセス(プロセス名はsoffice.exe)はずっと存在しています。そこで、このサービスを実行するコマンドをJavaコードから直接呼び出して、トランスコードが完了したら、直接にこのプロセスを実行する方法を考えました。後のJAVAコードに説明があります。
したがって、実際には、この第2ステップを直接スキップすることができます。
3.JodCoverter関連のjarカバンをプロジェクトに追加します。
JodConverterを解凍して、libの下のjarカバンを全部プロジェクトに追加します。
注意:openofficeのインストール
4.以下がポイントです。Javaコード解析を参照してください。

package cn;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
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;
/** 
 * office   pdf 
 * pdf   swf   
 * @author Administrator 
 * 
 */
public class Converter {
	private static String openOfficePath = "E:\\    \\openoffice\\date";
	//openoffice        
	/** 
   *  Office     PDF.          OpenOffice jodconverter-2.2.2 
   * <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,         
   */
	public static int office2PDF(String sourceFile, String destFile) {
		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 = openOfficePath;
			//   OpenOffice       
			//          URL           '\',   '\'  
			if (OpenOffice_HOME.charAt(OpenOffice_HOME.length() - 1) != '\\') {
				OpenOffice_HOME += "\\";
			}
			//   OpenOffice     
			String command = OpenOffice_HOME  
			          + "program\\soffice.exe -headless -accept=\"socket,host=127.0.0.1,port=8100;
			urp;
			\"";
			Process pro = Runtime.getRuntime().exec(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 (IOException e) {
			e.printStackTrace();
		}
		return 1;
	}
	public static void main(String []args) throws Exception {
		String sourcePath = "C:\\Users\\Administrator\\Desktop\\1\\       .xls";
		String destFile = "C:\\Users\\Administrator\\Desktop\\1\\dest.pdf";
		int flag = Converter.office2PDF(sourcePath, destFile);
		if (flag == 1) {
			System.out.println("    ");
		} else if(flag == 0){
			System.out.println("    ");
		} else {
			System.out.println("      ,  url.properties    ");
		}
	}
}
締め括りをつける
以上はJavaがopenofficeを利用してdoc、docxをpdfの実例コードに変えた内容についてです。皆さんの助けを期待しています。興味のある方は引き続き当駅の他のテーマを参照してください。友達のサポートに感謝します。