Converting MS Office documents into PDF

Hi,We've just started a project in which we should convert MS Office documents (Excel/Word/PowerPoint) into PDF. Anyone has any experience making this kind of convertion?Any idea/suggestion/recommendation would be appreciated.Thanks in advanceJorge Ortiz
[290 byte] By [jorge.ortiz@tirea.esa] at [2007-11-27 4:19:46]
# 1
Do you have to write your own code from scratch, or can you use existing services? There are several web services that can do this, as well as other programs that you can use. google "java office pdf converter"
hunter9000a at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 2
I wouldn磘 like to use third-party services. My system should assure high availability and I磀 prefer to do it by my own.Thanks,Jorge
jorge.ortiz@tirea.esa at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 3

> I wouldn磘 like to use third-party services. My

> system should assure high availability and I磀 prefer

> to do it by my own.

>

There are open source projects that have been working on processing MS Word and MS Excel files for years and still are not finished. So, if you have 'years' available, then carry on.

sabre150a at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 4
[url] http://www.lowagie.com/iText/[/url]Check this open source Java library for creating RTF and PDF documents. I have used this to create PDF documents in my programs in the past.See if this meets your needs.
maple_shafta at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 5
Try http://jakarta.apache.org/poi/See also www.OpenOffice.orgyou can convert an ms-word document to a pdf:1. Open > File. Select MS Word file.2. File > Export as PDF.Message was edited by: java_2006
java_2006a at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 6
Doesn't Adobe have something that'll do this?
aasantaviccaa at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 7

Hi,

I think Adobe has a solution based on client-server architecture. I don磘 want my huge documents to be sent over the network.

I need something to be done programatically; using OpenOffice manually wouldn't help me.

iText could create PDF documents, but I need to create my own convertion engine Office-PDF. It doesn't support MS Office documents as input.

Thanks again for your help,

Jorge

jorge.ortiz@tirea.esa at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...
# 8
OpenOffice is an Open Source project. Download the source code of this project and look there to find how it converts MS-Office documents to PDF.
java_2006a at 2007-7-12 9:26:43 > top of Java-index,Java Essentials,Java Programming...