我正在使用JODConverter库V 3.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:\Users\Chris\AppData\Local\Temp\ArFile\PDF\blah.pdf : C:\Users\Chris\Documents\blah.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:\Users\Chris\AppData\Local\Temp\.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套接字,在使用套接字之前,转换器工作正常,但在我更改为套接字后,它开始挂起。我不知道为什么......
答案 0 :(得分:3)
问题可能在这里:
officeManager.start(); // may tweak the start and stop code ...
如果代码正在等待已启动的进程完成,它可能会等到您终止OpenOffice服务,之后它会使程序的其余部分失败。
确保在后台服务中启动该服务,以便主程序可以继续。或者手动启动OpenOffice服务器(在程序之外)。不要waitFor()
,因为服务永远不会结束。
上面的System.out.println()
会被打印出来,所以到那里它仍在工作。
答案 1 :(得分:3)
重新启动电脑后问题解决了,我不明白为什么......
答案 2 :(得分:0)
我们一直在开发一个具有即时转换功能的项目,我们也偶然发现了这个奇怪的问题。解决方案是使用sigar进程管理器而不是纯java进程管理器。它更健壮,更一致,但它需要本机库。
答案 3 :(得分:0)
似乎这是你选择的端口的一个问题,我知道我已经遇到过类似使用java套接字对象的时髦东西。