Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Reading Office Documents

by hipowls (Curate)
on Jan 18, 2008 at 09:48 UTC ( [id://663039]=note: print w/replies, xml ) Need Help??


in reply to Reading Office Documents

I once had a similar problem where I needed to save a document in Word format. I ran OpenOffice from perl.

system qw{/path/to/soffice -invisible}, qq{"macro:///Standard.Converters.SaveAsDoc($(in),$(out))"};
which invoked the following macro. You'll need to find out what you change "MS Word 97" to, I have to leave something for you to do;)
REM ***** BASIC ***** Sub SaveAsDoc( inFile, outFile ) inURL = ConvertToURL( inFile ) oDoc = StarDesktop.loadComponentFromURL( inURL, "_blank", 0, (_ Array(MakePropertyValue( "Hidden", True ),)) outURL = ConvertToURL( outFile ) oDoc.storeToURL( outURL, Array(_ MakePropertyValue( "FilterName", "MS Word 97" ),) oDoc.close( True ) End Sub Function MakePropertyValue( Optional cName As String, Optional uValue +) As com.sun.star.beans.PropertyValue Dim oPropertyValue As New com.sun.star.beans.PropertyValue If Not IsMissing( cName ) Then oPropertyValue.Name = cName EndIf If Not IsMissing( uValue ) Then oPropertyValue.Value = uValue EndIf MakePropertyValue() = oPropertyValue End Function

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://663039]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-19 20:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found