Tagged Questions
0
votes
0answers
10 views
XWPFTableRow adding new Row with current style?
I try to use Apache POI to add new row onto the existing XWPFTable such that the row added is hold the style (font, color, etc.) of the last row. Normally, XWPFTable.createRow() returns a row with ...
0
votes
1answer
85 views
How to read docx file content in java api using poi jar
I have done reading doc file now i'm trying to read docx file content. when i searched for sample code i found many, nothing worked. check the code for reference...
import java.io.*;
import ...
1
vote
1answer
96 views
Exception in thread “AWT-EventQueue-0” java.lang.NoClassDefFoundError
I am trying to read a .docx file into a JTextPane, but its giving some exception. I am using POI library. What should I do? Help me out, please. Here is my code:
file = new File(
...
0
votes
1answer
55 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
63 views
How to highlight a substring in a paragraph of docx document using apache poi?
I'm developing an web application which allows to compare 2 docx documents. And I want to highlight similar locations in two documents. I used apache poi to process docx files. Furthermore to ...
0
votes
2answers
717 views
Apache POI or docx4j for dealing with docx documents
What do you think Which is better to use to read docx document as java objects and why ?
0
votes
0answers
179 views
Unable to convert docx to html using Java
I need to convert .docx file content to HTML text in order to display in web ui.
I've used Apache POI's XWPFDocument class but haven't been able to get any results yet; getting empty string. My code ...
0
votes
1answer
146 views
Read details property from DOCX
How I can read property->details->(title | subject | comments) from *.docx document.
0
votes
0answers
85 views
How to set table to 100% with Apache POI OOXML?
I have been trying and being unsuccessful with setting table width to 100% in Apache POI OOXML. I have read the document but couldn't find proper way to do so. Is Apache POI missing this ...
1
vote
0answers
145 views
How to use custom fonts with XWPFRun in apache poi api for java
how to use custom fonts with XWPFRun in apache poi api for java
http://poi.apache.org/apidocs/org/apache/poi/xwpf/usermodel/XWPFRun.html
setFontFamily uses system fonts how can use fonts from ...
0
votes
1answer
738 views
Processing docx file using APACHE POI
I'm trying to retrieve a docx from database and try to process it by checking its content. I think mycode retrieved my desired file but it seems that I haven't fully understood APACHE POI. I got an ...
0
votes
1answer
435 views
How to make a multiple pages docx?
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(TEMPLATE);
XWPFDocument document = new XWPFDocument(is);
List<IBodyElement> elements = ...
0
votes
0answers
400 views
Apache POI XWPF Docx Corrupted File
I'm attempting to open an existing text file, read it, and write the text to a 2007 Word Doc (DOCX) using Apache POI XWPF. The file is created successfully, however, in attempting to open it Word ...
0
votes
1answer
2k views
Format table XWPFTable using Apache Poi
How can I format a table while creating docx file using Apache POI. I want to set the size of the cells, font of the text, color, etc..
I found this example, but the cell size is set according the ...
2
votes
2answers
992 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?
...
0
votes
1answer
472 views
How to copy a paragraph of .docx to another blank .docx using Java and retaining the formatting style
How to copy a paragraph of .docx to another blank .docx using Java and retaining the formatting style?
Keeping alignment,font size,bold, italic,underline,font style and everything else preserved.
...
3
votes
1answer
1k views
How to generate RSID attributes correctly in Word .docx files using Apache POI?
I have been using Apache POI to manipulate Microsoft Word .docx files — ie open a document that was originally created in Microsoft Word, modify it, save it to a new document.
I notice that new ...
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 = ...
3
votes
3answers
2k views
How can I use predefined formats in DOCX with POI?
I'm creating a docx generator with POI and would like to use predefined formats.
Word includes several formats like Title, Heading 1..10 etc. These formats are predefined in every DOCX you create ...
13
votes
1answer
9k views
How can I create a simple docx file with Apache POI?
I'm searching for a simple example code or a complete tutorial how to create a docx file with Apache POI and its underlying openxml4j.
I tried the following code (with a lot of help from the Content ...
7
votes
2answers
7k views
How to extract plain text from a DOCX file using the new OOXML support in Apache POI 3.5?
On September 28, 2009 the Apache POI project released version 3.5 which officially supports the OOXML formats introduced in Office 2007, like DOCX and XLSX.
Please provide a code sample for ...
