JOD转换器问题



我正在使用JODConverter库V3.0 Beta 4和Open Office 3.4,并试图将一些文件转换为PDF/A-1格式。然而,在办公室经理流程启动后,它只是挂起,什么也没发生。这是输出:

Jul 26, 2012 12:04:03 PM org.artofsolving.jodconverter.office.ProcessPoolOfficeManager <init>
INFO: ProcessManager implementation is PureJavaProcessManager
C:UsersChrisAppDataLocalTempArFilePDFblah.pdf : C:UsersChrisDocumentsblah.txt
Jul 26, 2012 12:04:04 PM org.artofsolving.jodconverter.office.OfficeProcess start
INFO: starting process with acceptString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1' and profileDir 'C:UsersChrisAppDataLocalTemp.jodconverter_socket_host-127.0.0.1_port-2002'
Jul 26, 2012 12:04:04 PM org.artofsolving.jodconverter.office.OfficeProcess start
INFO: started process

中间的一行是打印输出文件名和输入文件名的输出,用冒号分隔,你可以看到它们是有效的值。。。

这是我的转换器类:

package com.allcare.arfile;
import com.sun.star.beans.PropertyValue;
import java.io.File;
import java.util.HashMap;
import java.util.Map;
import org.artofsolving.jodconverter.OfficeDocumentConverter;
import org.artofsolving.jodconverter.document.DocumentFamily;
import org.artofsolving.jodconverter.document.DocumentFormat;
import org.artofsolving.jodconverter.office.DefaultOfficeManagerConfiguration;
import org.artofsolving.jodconverter.office.OfficeManager;

public class FileConverter 
{
OfficeManager officeManager;
String tempFilePath;
public FileConverter() 
{
    officeManager = new DefaultOfficeManagerConfiguration()
            //.setRetryTimeout(30000L)
            //.setTaskExecutionTimeout(60000L)
            .buildOfficeManager();
    tempFilePath = System.getProperty("java.io.tmpdir") + "\ArFile\PDF\";
}
// if possible this function converts a file to a PDF/A-1 compliant file
public File convertToPdf(File inputFile, Log logger, User user)
{        
    if (isConvertableToPDF(inputFile.getName())) // REMEMBER TO CHANGE THE IF STATEMENT IN THE createMetadata() section to reflect this 
    {
        new File(tempFilePath).mkdirs();
        String filename = inputFile.getName();
        filename = filename.substring(0, filename.lastIndexOf("."));
        File outputFile = new File(tempFilePath + filename + ".pdf");
        System.out.println(outputFile + " : " + inputFile);
        officeManager.start(); // may tweak the start and stop code to appear elsewhere for additional efficiency
        DocumentFormat docFormat = new DocumentFormat("Portable Document Format", "pdf", "application/pdf");
        Map map = new HashMap();
        map.put("FilterName", "writer_pdf_Export");
        PropertyValue[] aFilterData = new PropertyValue[1];
        aFilterData[0] = new PropertyValue();
        aFilterData[0].Name = "SelectPdfVersion";
        aFilterData[0].Value = 1;
        map.put("FilterData", aFilterData);
        docFormat.setStoreProperties(DocumentFamily.TEXT, map);
        OfficeDocumentConverter docConverter = new OfficeDocumentConverter(officeManager);
        docConverter.convert(inputFile, outputFile, docFormat);
        officeManager.stop();
        return outputFile;
    }
    return inputFile;
}
// returns true if the file format is known to be convertible into the PDF/A-1 format
public boolean isConvertableToPDF(String filename)
{
    if (filename.endsWith(".doc") || filename.endsWith(".txt") || filename.endsWith(".xls") 
            || filename.endsWith(".ppt") || filename.endsWith(".docx"))
    {
        return true;
    }
    return false;
}
}

我使用的是java套接字,在我使用套接字之前,转换器工作得很好,但在我改用套接字之后,它开始挂起。我不知道为什么。。。

问题可能在这里:

officeManager.start(); // may tweak the start and stop code ...

如果代码正在等待启动的进程完成,它可能会等到您终止OpenOffice服务,之后它会使程序的其余部分失败。请确保在后台服务中启动该服务,以便主程序可以继续。或者手动启动OpenOffice服务器(在程序之外)。不要waitFor(),因为服务永远不会结束。

你上面的System.out.println()已经打印出来了,所以到目前为止它仍然有效。

重新启动电脑后问题自行解决,我不知道为什么。。。。

我们一直在开发一个具有动态转换功能的项目,我们也偶然发现了这个奇怪的问题。解决方案是使用sigar流程管理器而不是纯java流程管理器。它更加健壮和一致,但它需要本地库。

您选择的端口似乎有问题,我知道我使用java套接字对象遇到过类似的问题。

最新更新