-1

I want to read text from doc file and write it into text file. How can I do it? Any suggestion will be highly appreciated.

Thanks Mohit Singhal

A. Agarwal
  • 415
  • 4
  • 12

1 Answers1

1

Use Apache POI to handle Microsoft Office Documents. Apache POI will give you access to the text which you can then write to a simple text file using a FileOutputStream (tutorial here).

David Brossard
  • 13,584
  • 6
  • 55
  • 88