0
votes
1answer
22 views

Copy a docx to the end of another

I'm using Apache POI to work with docx documents using java. The principe is simple : I have a base template to show datas (with text, titles and tables) I have datas that will fill the template I ...
0
votes
0answers
30 views

Creating Comments On a Word Document(.doc) using Apache POI

I am trying to create word document(.doc) comments using Java. I went through Apache POI Library, but it was only supporting comments extraction. Is there any way that I could create word document ...
1
vote
0answers
33 views

Counting pages in a Word document

I'm trying to count pages from a word document with java. This is my actual code, i'm using the Apache POI libraries String path1 = "E:/iugkh"; File f = new File(path1); File[] files = ...
0
votes
0answers
67 views

Create document from dotx template with Apache POI HWPF

I would like to crate new document from existing dotx template. I tried couple of ways listed here - How can I use predefined formats in DOCX with POI? But none of them work. Setting styles has no ...
0
votes
1answer
58 views

Getting image size from XWPF document (Apache POI)

anyone had experience parsing docx file with Apache poi? while extracting image from CharacterRun using paragraph.getRun().getEmbeddedPictures(); I was not able to find a way to get scaling or/and ...
0
votes
0answers
58 views

Set color text in doc file using apache poi

I used this code snippet to set color text in MS Word file CharacterRun r = paragraph.getCharacterRun(2).insertBefore("x"); r = r.insertBefore("y"); r.setColor(6); r.insertBefore("z); I want to set ...
0
votes
0answers
119 views

Convert word and excel to html on android

I would like to convert word and excel documents to html to show them in the browser in my android app. I found apache poi library, but it converts practically only text without object like forms, ...
1
vote
2answers
47 views

Adding custom shapes to JTextpane and saved to new Word document

If I load a Word document into a JTextPane, is there a way I could drop a custom shape in it, then save it as a new Word document? The results I'm looking for are just like dropping a shape anywhere ...
0
votes
0answers
123 views

How to extract text from .doc document using apache poi?

I used some code snippets below for extracting text from .doc file HWPFDocument document = new HWPFDocument(new FileInputStream(inputFile)); Range range = document.getRange(); int len = ...
0
votes
1answer
435 views

how create a Word document from a template or existing document with Java?

I am sorry for my poor English. I have a document like a template, some fields are static and others are dynamic, I need to replace some data (name, last name, salary) and generate the new file. What ...
5
votes
1answer
151 views

Unable to replace arabic characters with Apache POI in a MS Word file

I need to dynamically modify Word files with values from a database or entered by the user. The values and files are in arabic. The problem is that it's not working all the time. Every time, I ...
0
votes
1answer
202 views

Apache POI - multiple columns in a Word (docx) document

I'm trying to create a word document with multiple columns. The reason for doing this (rather than using tables) is that the data will span multiple pages and only with columns I can fill the whole ...
0
votes
0answers
58 views

Need Microsoft office installed on server for Java EE application

I wanted to know do we need Microsoft office installed on server in order to generate word, excel, pdf documents from Java EE application. As I understand the pdf is generated by iText so there is no ...
0
votes
1answer
214 views

Is it possible for Apache POI to add / remove watermark to Microsoft Word

Is it possible to add / remove image watermark to Microsoft Word 2010 by Apache POI? Should I treat it as normal image or any special handling? Thanks in advance.
1
vote
0answers
90 views

Converting ms word 2007 using poi

What version of apache poi scratchpad can i use for both 2007 and 2003 format.Now am using poi-scratchpad-3.8 but it has only methods to convert doc file to html,pdf etc.But i need to use docx also ...
0
votes
1answer
958 views

Some HWPF POI document building examples

I'm looking for examples of building non-trivial Word (97-2003) documents with POI. I already reached to create one with "Hello World": package com.mygroup.myapp.poi.word; import java.io.File; ...
0
votes
1answer
235 views

How to de-fragment docx files for using with Apache POI 3.8?

I'm trying to find & replace text passages in docx files with POI 3.8 like described here. That works just fine if I insert my tags on the first run. But as soon as I re-open the docx file and do ...
1
vote
0answers
149 views

Apache POI - Word Files

I have been successfully able to read a word document containing images usiong POI. I have even be able to extract a section from Word document including the images. I am writing the extracted ...
0
votes
0answers
101 views

Apache POI for Word: merged cells

how to create table in Word Document with merged cells like this | | | | | | | | | | |
0
votes
1answer
658 views

I need Apache POI Pictures converted from a word document to a html file

I have some code that uses the Java Apache POI library to open a Microsoft word document and convert it to html, using the the Apache POI and it also gets the byte array data of images on the ...
0
votes
1answer
837 views

Converting a .docx to html using Apache POI and getting no text

I currrently have some code that converts a .doc document to html but the code I am using for converting a .docx to text unfortunately doesn't get the text and convert it. Below is my code. private ...
0
votes
0answers
361 views

Adding and Inserting Image into POI XWPFParagraph

I am trying to successfully add an image to a DocX file using POI. I've been able to get the raw bytes to be added to the file, but I always receive an XML writing error when I try to open this file, ...
0
votes
1answer
2k views

Java Apache POI read Word (.doc) file and get named styles used

I am trying to read a Microsoft Word 2003 Document (.doc) using poi-scratchpad-3.8 (HWPF). I need to either read the file word by word, or character by character. Either way is fine for what I need. ...
0
votes
0answers
303 views

Pictures in Word document do not show up in POI PicturesTable

This Apache POI code should (I think) produce a list of all pictures embedded in a Word document: InputStream in = new FileInputStream(f); HWPFDocument doc = new HWPFDocument(in); List<Picture> ...
1
vote
0answers
293 views

MS Word Styled Tabled using Apache POI

I'm working on a small project where I need to create a dynamically produced table in MS word using Java. I've been fiddling around with Apache POI, and while i'm fairly certain this is the right API ...
1
vote
0answers
197 views

How to hide text in Word Document using Apache POI library

Is it possible to hide text in MS Word Document using Apache POI library? If yes, please let me know how. I am able to create and read the document using POI library. Is there any way to hide some ...
1
vote
1answer
2k views

Create a Word file using POI

My requirement is that I should read a template file and change some values in its content and write it back to another file. Most importantly it should have the same styles as that of the template. ...
0
votes
1answer
296 views

Making word parse HTML formatting

We've got a JSP that utilizes the NicEdit online texteditor to format text using JavaScript. The "submit" button runs a servlet that uploads the message string to our MySQL database, following which ...
0
votes
0answers
712 views

Apache POI - Generated Word document works but invokes a security warning

I'm using Apache POI in a Java project to generate a word document based on a template. Specifically I'm using the HWPFDocument class and both the template and the output file is in the old .doc ...
4
votes
2answers
3k views

Java: Apache POI: Can I get clean text from MS Word (.doc) files?

The strings I'm (programmatically) getting from MS Word files when using Apache POI are not the same text I can look at when I open the files with MS Word. When using the following code: File ...
1
vote
0answers
435 views

How to copy a paragraph of .docx to another .docx withJava and retain the style

I am trying to copy the content from a particular paragraph in a .docx to another empty .docx .the problem i have is that the style,bullets,numbering etc from the source.docx is not retained in the ...
0
votes
0answers
288 views

Saving poi document correctly

I have initilized code as: POIFSFileSystem poifs = new POIFSFileSystem(fileInputStream); IOUtils.closeQuietly(fileInputStream); HWPFDocument hwpfDocument = new ...
2
votes
1answer
365 views

Using Apache Poi to parse table within a table in a word document

I was able to get the tables present in a word document using getTablesIterator() on a XWPFDocument. But is there a way to get table within a table? Thanks in Advance, Joel
0
votes
2answers
577 views

Converting all document types(MS DOCs+TIFFs+JPGs) stored on Filenet CE to pdf

Currently we are developing a Java application to grab documents (all types can be stored on filenet) from Filenet and displaying it in pdf format, the issue is that I need a tool for converting all ...
0
votes
1answer
1k views

using WordToHtmlConverter converter in Apache POI

I am trying to use WordToHtmlConverter class to convert a word document in HTML, but the documentation is not clear. The WordToHtmlConverter has a constructor taking org.w3c.dom.Document, but I don't ...
1
vote
2answers
2k views

Is it possible to parse MS Word using Apache POI and convert it into XML?

Is it possible to convert a MS Word to XML file using Apache POI ? If it is, can you point me to any tutorials for doing that?
0
votes
1answer
735 views

Read and Write .docx with Apache POI

Is there any sample code to copy content of a .docx file to another .docx file and retain the style of text using Apache POI? Please help.
2
votes
1answer
943 views

Android - creating word document

I want to create word(.doc) and excel(.xls) files on the android platform. For excel I am able to use jexel jar, but I am unable to find any API for word files. Can you tell me if there are any ...
1
vote
2answers
216 views

Identify hidden text Word 2003/2007 using Apache POI

I am converting a Word (2003 and 2007) document to HTML format. I have managed to read the text, formats etc from the Word document. But the document contains some hidden text like 'Header Change ...
1
vote
1answer
830 views

Controlling table row height for document in poi

I am trying to draw a table in poi using XWPF component using the below code // InputStream in= Temp.class.getResourceAsStream("Sample.docx"); XWPFDocument doc = new XWPFDocument(); ...
2
votes
5answers
8k views

Creating PDF from Word (DOC) using Apache POI and iText in JAVA

I am trying to generate a PDF document from a *.doc document. Till now and thanks to stackoverflow I have success generating it but with some problems. My sample code below generates the pdf without ...
0
votes
0answers
641 views

How to get text from textbox of MS word document using Apache POI?

I want to get information written in Textbox in an MS word document. I am using Apache POI to parse word document. Currently I am iterating through all the Paragraph objects but this Paragraph list ...
2
votes
1answer
2k views

How to extract formatting information of word document using Apache POI?

I am using Apache POI for extracting formatting information from MS word files. I want to extract information like whether paragraph is having bullet, background color, forecolor, alignment, ...
2
votes
2answers
994 views

How to print .doc and .docx in java

I just learned how to do some basic .doc and .docx manipulations ussing Apache-POI. And now what i want to do is try to print those documents from within my application. Any idea how can i do so? ...
1
vote
2answers
880 views

how to read content from ms word using jakarta poi

Hi i included jakarta-poi-1.5.1-final-20020615.jar file to read content from ms word. i am unable to do this ...can anyone help me?
1
vote
1answer
1k views

Accessing Table embedded in a Word Document using Java

I've been trying to access a table inside a Doc file. Though I can access the text content of the cell, I can't determine where in the cell the text is. When I display the text of the table, each ...
1
vote
3answers
2k views

Open MS documents into JFrame

What I get is to open a Microsoft (Word, Excel, etc) into a JFrame. Anybody can tell me some to get this library?, the Apache POI API (http://poi.apache.org) can help me with this?, maybe the library ...
2
votes
1answer
2k views

How should i replace the string in word document with another string using poi?

i new to poi.i have a requirement to develop and edit the word document using poi.please send any sample examples for above question.
0
votes
3answers
5k views

How to Extract docx (Word 2007 above) using Apache POI

Hai, i'm using Apache POI 3.6 I've already created some code.. XWPFDocument doc = new XWPFDocument(new FileInputStream(file)); wordxExtractor = new XWPFWordExtractor(doc); text = ...
0
votes
1answer
5k views

Apache POI: Replace paragraph text

I am using Apache POI to generate docx files from a template. There doesn't seem to be an obvious way to replace all text in a paragraph and the documentation is pretty scarce. Right now I am able to ...

1 2