Tagged Questions

3
votes
2answers
533 views

Copy a whole ODT (Openoffice Writer) document section to other document with Openoffice Java API (UNO API)

I need to use the OpenOffice Java API to copy a document section and paste it over another document section. So far I have managed to copy the text of the section of the source document and paste it ...
2
votes
0answers
139 views

How to update an embedded Excel table in a word document with OpenOffice Java API?

I need to update an embedded Excel table inside a Word document (can be .doc or .docx) using Java and the OpenOffice API UNO. Has anyone done this? Any pointers appreciated :)
2
votes
2answers
287 views

OpenOffice, writing a document to a servlet response

Currently we use OpenOffice to grab bookmarks in a template file document and replace them with content from our DB via Java. The lines of code that actually save the file look like this... ...
1
vote
0answers
81 views

Programmatic Search and Replace in an OpenOffice writer document from Java?

Is there a way to programmatically search and replace text in an OpenOffice Writer document using the Java UNO API? I'm looking to search and replace particular text with mail merge query fields.
1
vote
1answer
100 views

How do I run OpenOffice.org as a background process for connecting my application to using the UNO Java API?

Right now, I'm starting OpenOffice.org 3.3 with the arguments "-accept=socket,host=0,port=8100;urp;" using a shell script (.bat file on Windows, .sh file on Solaris). OpenOffice.org starts and the ...
1
vote
1answer
129 views

How to shutdown OpenOffice from may Java Uno application?

I have Java Uno application which runs on server and performs automated text extraction from documents. I want to shutdown OpenOffice from my application before exiting. How can I do this? Thanks in ...
1
vote
1answer
313 views

are there any ways to embed Open Office into my application?

I am successful in working with Open Office via UNO. Now I want to embed the Open Office library into my Java application, is it possible?
1
vote
1answer
1k views

Migrating Java UNO code from OpenOffice 2.4 to 3.0

I had a nifty small tool written to convert spreadsheets to plain text. Since it was my private hacker tool, it relied on OpenOffice 2.x to read the files. But when I installed OpenOffice 3 and tried ...
0
votes
0answers
9 views

Merging RTF documents with OpenOffice API

Can this be done? I've got what seems to be a relatively simple task: Take a set of RTF documents (that may have different fonts, btw) and merge them together into one big document programmatically. ...
0
votes
1answer
41 views

OpenOffice use .odm progammaticaly in Java

I need to do some work on a Master Document (.odm) with the UNO IDL and it's binding to Java. I want to know if there is a way to access all the documents it's referencing and, if possible, without ...
0
votes
0answers
302 views

How to insert a row into an OpenOffice.org Calc with java? (uno)

I had installed the OOo SDK, and the UNO into my eclipse. I can do the HelloWorld example, but i don't know how to run it... Whatever... I want to insert a row into an OOo Calculator (excel) with UNO ...
0
votes
0answers
62 views

How to get Xcell address in string

I'm newby openoffice uno java api user, I want to get cell range address into a string expression, something like 'A1:B2' can anyone help me?!
0
votes
1answer
191 views

Java OpenOffice UNO API: How to scale spreadsheet document?

I have an Excel document and I want to export it to PDF format. However, my document goes beyond A4 format area and I want to scale it before export. Some body knows any solution of this problem? ...