satheesh
satheesh

Reputation: 1451

reading images from a word file and display in the jframe

How to read image from a word document file and display in jframe?

Upvotes: 0

Views: 846

Answers (2)

AlexR
AlexR

Reputation: 115338

Use Jakarta POI to read word file. Then display the content in JFrame as you want. You can also use OpenOffice to embed Word document directly.

Upvotes: 0

aioobe
aioobe

Reputation: 421040

To parse office documents (including MS Word files) in Java, I suggest you use the Apache POI library.

Upvotes: 1

Related Questions