HWPFDocument MySQL Word document read Programming Databases by softDeveloper …=new FileInputStream([COLOR="green"]docFile.getAbsolutePath()[/COLOR]); HWPFDocument doc=new HWPFDocument(fis); docExtractor = new WordExtractor(doc); [/CODE] However, I have… Apache Poi for doc Programming Web Development by shivarocks …xyz.doc"); FileInputStream fis=new FileInputStream(file.getAbsolutePath()); HWPFDocument document=new HWPFDocument(fis); extractor = new WordExtractor(document); String [] … { POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(file)); HWPFDocument doc = new HWPFDocument(fs); Range range = doc.getRange(); CharacterRun run =… Re: Apache Poi for doc Programming Web Development by shivarocks …,java.io.IOException,java.io.OutputStream,org.apache.poi.hwpf.HWPFDocument,org.apache.poi.hwpf.usermodel.CharacterRun,org.apache.poi.hwpf…"); try { POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(file)); HWPFDocument doc = new HWPFDocument(fs); Range range = doc.getRange(); CharacterRun run = range.insertAfter… Install Apache POI with Elipse Programming Software Development by evandana … as my site did not allow it to close HWPFDocument doc = new HWPFDocument(fs); WordExtractor we = new WordExtractor(doc); String[] paragraphs = we… Need Help On Reading the Title OF a Word Document Using Java Programming Software Development by Zaad … a MS word document..... At present I am using the HWPFDocument library to read the text from the word document.... But… Re: Doc to PDF conversion Programming Software Development by masijade Well, are you even [i]attempting[/i] to read the formatting? Or are you just trying to read the text? See HWPFDocument and its getStyleSheet method. All of the formatting is contained in the style sheets. The text is just the, well, [i]text[/i]. Re: Apache Poi for doc Programming Web Development by peter_budo 1. Just because you didn't get answer in 24 hours you feel like you are entitled to create another new thread? 2. Why are you misusing JSP for something that is not supposed to do? Do document manipulation in servlet and just forward necessary data to page view. Re: Apache Poi for doc Programming Web Development by shivarocks sir thanks for your reply can you help me how to do that i am new to jsp and i didnt started servlets...so please help me!!! Re: Install Apache POI with Elipse Programming Software Development by peter_budo You need to extract this file and you will get 3 JAR files (poi-3.2-FINAL-20081019.jar, poi-contrib-3.2-FINAL-20081019.jar and poi-scratchpad-3.2-FINAL-20081019.jar, most of the times you will need only poi and poi-scratchpad) plus other documentation. Then you have to attach it to your project like [URL="http://www.cs.duke.edu/courses/… Re: Install Apache POI with Elipse Programming Software Development by evandana Amazing! Thanks! That seems to have worked! Re: Install Apache POI with Elipse Programming Software Development by audaykum hi can you please tell me hoe you got the code you've mentioned to compile and run. Im using poi API for the first time. I need to convert powerpoint to image. Can you help me out with that? Re: Install Apache POI with Elipse Programming Software Development by peter_budo 1) Bad idea to reopen old thread 2) Little search and less excuses of being new and you would have found [URL="http://mail-archives.apache.org/mod_mbox/poi-user/200809.mbox/%3C19575440.post@talk.nabble.com%3E"]this code[/URL] Re: Install Apache POI with Elipse Programming Software Development by mbajaj_92 Plz Give me a Link from Where To Download The APache POI for Creating and editing Excel Files through JAVA.... ive dwnloaded the zip files from various Sources but there is No jra file in those zip files..... plz post the exact Link From where i can directly dwnload the file..... Thnx Re: Install Apache POI with Elipse Programming Software Development by peter_budo [Here](http://lmgtfy.com/?q=Apache+POI+download) Re: Need Help On Reading the Title OF a Word Document Using Java Programming Software Development by Phaelax Isn't the title of word documents just the first sentence in the file? Re: Need Help On Reading the Title OF a Word Document Using Java Programming Software Development by Zaad [QUOTE=Phaelax;1104344]Isn't the title of word documents just the first sentence in the file?[/QUOTE] Yes it is.... But what about the documents without the title.... How can I determine whether the document has a title or not..... Please give me ur idea on this.... I would really appreciate it.. Thank u again Re: Need Help On Reading the Title OF a Word Document Using Java Programming Software Development by Salem Who knows what the author regards as the title - there are so many different places to put it, with no obligation to use any of them. There may be a document properties field called "Title". There may be some text formatted with the style called "Title". But what if it's used more than once, what then? It might be the first … Re: Need Help On Reading the Title OF a Word Document Using Java Programming Software Development by Zaad [QUOTE=Salem;1104403]Who knows what the author regards as the title - there are so many different places to put it, with no obligation to use any of them. There may be a document properties field called "Title". There may be some text formatted with the style called "Title". But what if it's used more than once, what then?…