openoffice转换文件到服务器,openoffice转换文件时的问题

在使用OpenOffice批量转换大量文件为PDF时遇到内存问题,soffice.bin进程内存持续增加直至崩溃。尽管每次转换后调用了XComponent对象的dispose方法,但内存仍然无法有效释放。问题可能源于转换过程中资源未被正确清理。解决方案可能涉及更深入的内存管理和OpenOffice API的优化使用。
摘要由CSDN通过智能技术生成

当我用OpenOffice将大量文件转化成PDF的时候,soffice.bin进程的内存持续增大。当到一定程度的时候soffice.bin进程就挂了,转换失败。每次转换完一个文件后我都执行了XComponent对象的dispose方法。为什么它的内存会会不断增长呢?

以下是转换方法:

public static void fileconverter(XComponentContext xContext, int min, int max)

{

PropertyValue[] propertyValues = new PropertyValue[1];

propertyValues[0] = new unoidl.com.sun.star.beans.PropertyValue();

propertyValues[0].Name = "Hidden";

propertyValues[0].Value = new uno.Any(true);

unoidl.com.sun.star.beans.PropertyValue[] propertyValue2 =

new unoidl.com.sun.star.beans.PropertyValue[2];

propertyValue2[0] = new unoidl.com.sun.star.beans.PropertyValue();

propertyValue2[0].Name = "Overwrite";

propertyValue2[0].Value = new uno.Any(true);

propertyValue2[1] = new unoidl.com.sun.star.beans.PropertyValue();

propertyValue2[1].Name = "FilterName";

propertyValue2[1].Value = new uno.Any("writer_pdf_Export");

for (int i = min; i < max; i++)

{

XMultiServiceFactory xMCF = (unoidl.com.sun.star.lang.XMultiServiceFactory)xContext.getServiceManager();

XComponentLoader xCompLoader = (XComponentLoader)xMCF.createInstance("com.sun.star.frame.Desktop");

string inputFile = AppDomain.CurrentDomain.BaseDirectory + "1.docx";

string sUrl = PathConverter(inputFile);

string outputDir = AppDomain.CurrentDomain.BaseDirectory + "Test" + i.ToString() + ".pdf";

XComponent xComponent = xCompLoader.loadComponentFromURL(sUrl, "_blank", 0, propertyValues);

string sOutUrl = PathConverter(outputDir);

int index1 = sUrl.LastIndexOf('/');

int index2 = sUrl.LastIndexOf('.');

((XStorable)xComponent).storeToURL(sOutUrl, propertyValue2);

xComponent.dispose();

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值