Click here to Skip to main content
15,886,551 members

Use Openoffice convert doc to pdf

jedchan asked:

Open original thread
When I change a large number of files into form of PDF using OpenOffice, the memory of soffice.bin process is continued to increase. When it ups to a certain extent, the conversion of soffice.bin is failed. Every time, after transformed a file, I always run XComponent to dispose. Why the memory will be growing?

C#
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();
         }

     }
Tags: C#, OpenOffice, PDF

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900