首页 新闻 赞助 找找看

openoffice转换文件时的问题

0
悬赏园豆:50 [已关闭问题] 关闭于 2012-03-02 19:41

当我用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();
}

}

遥远的记忆的主页 遥远的记忆 | 初学一级 | 园豆:199
提问于:2011-12-30 14:34
< >
分享
所有回答(1)
0

你好,我也遇到了同样的问题。这个问题你是如何解决得

wangbaojiao | 园豆:202 (菜鸟二级) | 2013-08-21 11:51
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册