The Artima Developer Community
Sponsored Link

Java Answers Forum
Document conversion PDF to MS doc and vice versa

1 reply on 1 page. Most recent reply: Jan 15, 2009 9:30 AM by zet ucu

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
abin thomas

Posts: 1
Nickname: abintoms
Registered: Aug, 2007

Document conversion PDF to MS doc and vice versa Posted: Aug 7, 2007 4:46 AM
Reply to this message Reply
Advertisement
Hello everyone,
Can you tell me how to convert MS word documents to PDF format and vice versa.. I'm working on a project which requires me to do this..
Is there any jar files specific for this kind of conversion?
Do we have to convert these into XML format first? If so, how to go about it..
I've looked into POI, FOP and PDFBox.. which according to you provides easier implementation... Also, if you could send me any link to a suitable example, i'd be really grateful!
Thanks in Advance,
Abin Thomas


zet ucu

Posts: 4
Nickname: zett
Registered: Jan, 2009

Re: Document conversion PDF to MS doc and vice versa Posted: Jan 15, 2009 9:30 AM
Reply to this message Reply
MS to PDF is possible: dancrintea.ro/html-to-pdf/
Check page middle for example, after php.

Possible convertions:
doc --> pdf, html, txt, rtf
xls --> pdf, html, csv
ppt --> pdf, swf

Example:

import officetools.OfficeFile;
...
FileInputStream fis = new FileInputStream(new File("test.doc"));
FileOutputStream fos = new FileOutputStream(new File("test.pdf"));

OfficeFile f = new OfficeFile(fis,"localhost","8100", false);
f.convert(fos,"pdf");

Flat View: This topic has 1 reply on 1 page
Topic: JSP Previous Topic   Next Topic Topic: Urgent!!! help needed to convert JSP to PDF

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use