Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a requirement in which i have to read a file (pdf,text,doc,docx,ppt) and display its preview on mouse hover or mouse-on event on the link of that document in java/javascript (Same as Google webpage preview or crawler ). Is it possible to achieve that requirement using java. Thanks in Advance.

share|improve this question
Possible duplicate here – Pau Kiat Wee Jun 12 '12 at 11:53

1 Answer

The Office docs can be converted to PDF using Microsoft Office and its capacity to save a document as a PDF. You can find multiple samples on using the Office API to print as a PDF. For the pdf format you can use pdfbox and its feature to convert a pdf to an image and you can display the image of the first page as a preview.

Html and txt can be displayed directly or you can convert them to PDF as well.

Regards, Mihai

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.