Docx4j is a Java library for manipulating Microsoft OpenXML files (Word docx, Powerpoint pptx, and Excel xlsx)
0
votes
1answer
13 views
How to force Docx4j to refresh a replaced image file
I use Docx4j to generate various documents and I have a problem with the generation of documents containing images.
My program constructs a PNG file with a size of 300x200 pixels and generates a ...
0
votes
1answer
26 views
variableReplace showing a error
I have went onto the GitHub repository for the docx4j files and downloaded VariableReplace. When i copied this file into netbeans, I got an error on line 86 (Cannont find symbol).
Here is the code:
...
0
votes
0answers
7 views
Facing some issue on unix with docx4j 2.8.1, but working fine on windows
Please help me in the following issue.
I am using docx4j for docx generation and was working fine in windows platform. when i try to test it on unix server, it was showing the following error. when ...
0
votes
1answer
21 views
docx4j template generation :can not take the placeholder containing string as a separate entity
i implemented doc generation from doc template using docx4j. template having placeholders, in my code, there replace, the place holder by a value.The problem is that docx4j can't take the placeholder ...
1
vote
0answers
37 views
Docx4j - Copy all the contents of a page into another document in place of a Place Holder
Is it possible to copy all the contents (elements) of a page into another document in place of a Place Holder.
I am using Text Place Holders in template, and i am able to add images, text, ...
0
votes
1answer
37 views
Docx4j Set a value on Bookmark
I'm recently using the docx4j and i'm trying to set a bookmark on a Word document (it's my template file).
I already see the manual but i don't find the answer :S
I'm using version 2.8.1 and i'm ...
1
vote
1answer
54 views
Cannot use docx4j inside of JBoss 7
I was able to successfully create a simple project with docx4j ( http://www.docx4java.org ). This simple project successfully created and wrote on a .docx document. Now I am trying to accomplish the ...
-1
votes
1answer
49 views
docx4j convert docx in wrong html format
I have some problems with docx4j samples. I need to convert a file from docx in html format and back. I'm try to compile ConvertInXHTMLDocument.java sample. Html file it creates fine, but when trying ...
0
votes
0answers
99 views
Issues converting docx to PDF in java
I am trying to convert a word docx file to a pdf file, all using java, and without any user interaction.
This is my code so far, I am using the docx4j library.
/*
* To change this template, choose ...
0
votes
1answer
56 views
how to set linespacing using docx4j api?
Blockquote
Hi,
I am trying to convert doc to docx using docx4j api.I need to set line spacing as required.
Blockquote
1
vote
1answer
46 views
How to use and apply HMerge on a cell in generating a docx file using java and docx4j?
I have found tutorials on how to make a simple table in generating a docx file using docx4j. and have seen a sample on how to merge cells vertically. It worked. but i have tried the same using ...
0
votes
1answer
141 views
docx Template Docx4j replacing text in Java
Im new to Docx4j and my task is to replace some Text of a docx Template.
I read the getting Started Guide of docx4j but I don't think I fully understood the whole concept.
Well Anyway... I already ...
1
vote
2answers
117 views
How to apply new line in docx file generation using DOCX4J
By the tutorials that I have seen. I learned how to add text on generating a docx file. but then Every time I add a line of text. I noticed that there is always a space between the first line of text ...
0
votes
1answer
90 views
How to add image rel to my pptx slides with docx4j
Does someone know how to one image reference to any count of slides. I know how to add image to one slide, e.g. it works:
BinaryPartAbstractImage imagePart
= ...
0
votes
1answer
63 views
Does docx4j support the new Word 2013 Repeating section content control
I know that Docx4j supported repeating content in Content Controls in Word already before Microsoft did. (With the help of OpenDoPE and it's Word Add-In).
However, starting with Word 2013, the ...
1
vote
2answers
112 views
Docx4j - Images in the document
How can we remove an image from the docx4j.
Say I have 10 images, and i want to replace 8 images with my own byte array/binary data, and I want to delete remaining 2.
I am also having trouble in ...
0
votes
0answers
30 views
docx4j with weblogic Bad [Content_Types].xml Exception
how to solve this Exception when I use docx4j with weblogic to open docx file.
follow is my code:
WordprocessingMLPackage templatePackage = WordprocessingMLPackage
...
1
vote
1answer
96 views
docx4j checking checkboxes
Im unfortunatly rather new to docx4j and I am trying to figure out how to check a checkbox within a template that I have.
I tried working with Xpaths and get the Node that way but Im not sure I got it ...
0
votes
1answer
77 views
For some cases, convert XHTML to docx with docx4j lose original style
during my test, I find when converting following html content to docx, the original style will be lost.
< a href="http://www.google.com">Google< /a>
result in docx: no underline.
< p>< ...
0
votes
0answers
47 views
Docx4j Test - No File is Output
Attempting to write my first class with docx4j (http://www.docx4java.org). Basically the idea is to find a string of text in the .docx file and replace it with another string of text. Essentially a ...
0
votes
1answer
71 views
Optimize docx4j performance
I am using docx4j 2.8.1 to replace texts and a logo within the word files. Now I want to improve performance since the processing of about 50 documents is quite slow. What options are recommended to ...
0
votes
0answers
91 views
Does docx4j convert xhtml to docx in memory?
I'm trying to convert xhtml file to docx and find following example code:
wordMLPackage.getMainDocumentPart().getContent().addAll(XHTMLImporter.convert(new File(inputfilepath), null, wordMLPackage) ...
1
vote
3answers
513 views
how to convert doc,docx files to pdf in java programatically
I am able to generate pdf from docx file using docx4j.But i need to convert doc file to pdf including images and tables.
Is there any way to convert doc to docx in java. or (doc to pdf)?
1
vote
1answer
107 views
How to change JAXB used by JBoss AS 7.1 to JDK 6's JAXB
I have a Spring web app deployed on Jboss AS 7.1 and uses JDK 1.6.
Also use docx4j to deal with ms office word files.
Jboss forces its own jaxb implementation.
However docx4j needed the JDK 1.6's ...
0
votes
0answers
16 views
How to insert an ellipse (circle) in docX?
I'm trying to insert an ellipse in a docx without sucess. It is possible to add an ellipse to docx with docx4j? I also tried to insert the XML "....." with org.docx4j.XmlUtils.unmarshalString but I ...
0
votes
1answer
67 views
Custom solution in Docx4J for converting Docx to HTML
I have this requirement to convert multiple DOCX files into HTML format and if possible into RTF
Docx4j seems to be a good java library for doing this.
Using the HtmlExporterNG2.html method is not ...
0
votes
1answer
55 views
DOCX4J - Copying inbetween two markers
I've done a simple replace with DOCX4J, thanks to this awesome guide.
But now I'm trying to do something more complicated.
What I'd like to do is find my marker text #1 within the document, find my ...
0
votes
1answer
334 views
how to create a new word from template with docx4j
I have the following scenario, and need some advice:
The user will input a word document as a template, and provide some parameters in runtime so i can query my database and get data to fill the ...
0
votes
0answers
67 views
How can I insert images in the Android port of docx4java?
I'm building upon the example which is located at :
https://github.com/plutext/AndroidDocxToHtml
I can parse docx files successfully, add text, and then save them successfully.
For my project I ...
0
votes
1answer
119 views
Docx4j Permgen Space with 2G and a tiny document when converting to PDF
We have a 5kb .docx file being read into Docx4j-2.8.1 then converted to a PDF. In a unit test this works but once deployed into Tomcat 7 (TomEE-1.6.0-SNAPSHOT actually) we get Permgen space errors ...
0
votes
1answer
112 views
DOCX4J: Viewing HTML exported Document file in JEditorPane
I was trying to view an xHTML file generated by DOCX4J. I was able to successfully generate the mentioned file, all the formatting of text appears correctly in the browser. However, I was trying to ...
0
votes
1answer
43 views
DOCX4J: Null Pointer Exception
I created a new Document file using the WordprocessingMLPackage.createPackage() method.
Now I'm trying to manipulate the contents of the default style ("Heading 1", "Normal", etc.).
When I'm trying to ...
0
votes
2answers
718 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
1answer
133 views
dox4j cannot read POI saved files, who is at fault?
When I save a docx file after processing some text with XPath using POI, I then pass the ByteArrayOutputStream to a new ByteArrayInputStream and feed it to dox4j with
wordMLPackage = ...
0
votes
1answer
194 views
How do I turn off debug log4j in docx4j
I have tried for several days to configure log4j in my EJB without luck. I have two properties files that are never picked up in the classpath.
docx4j.properties
...
1
vote
1answer
67 views
Change the page orientation in middle of doc
I need to set landscape to some pages of a document. I tried this code:
SectPr sectionLandscape = objectFactory.createSectPr();
String rsidR = sectionLandscape.getRsidR();
SectPr ...
0
votes
3answers
210 views
How to Convert PDF to HTML-page in Android?
I need to convert PDF to HTML page in android. The reverse has been discussed on StackOverFlow a lot.
Thanks
0
votes
1answer
84 views
How Docx4j interprets css
I'm soon tearing my hair off but I'm really struggling with how docx4j interprets CSS when converting xhtml to a docx-file.
I've tried googling and I keep getting back to reading the sourcecode for ...
0
votes
0answers
56 views
Docx4j NOT able to convert Docx file having charts ,SmartAct,Shapes to HTML
When trying to convert Docx to HTMl using Docx4J it is NOT able to convert Docx file containing Clip arts,shapes,SmartAct in to the HTML view. it is giving blank at their places.
Any Help ?
1
vote
2answers
215 views
How to remove all comments from docx file with docx4j?
I'd like to remove all the comments from a docx file using docx4j.
I can remove the actual comments with a piece of code like is shown below, but I think I also need to remove the comment references ...
0
votes
1answer
113 views
repeat table header
I need to repeat the table header when it spans more then one page, or even detect the page break so I can add the header myself, I'm using Docx4j library.
1
vote
1answer
66 views
docx generation: putting elements inside ffData (CTFFData)
I'm using docx4j library to generate a docx file. I need to put couple of other elements inside the w:ffData tag, eventually creating a structure like this:
<w:ffData>
<w:name w:val="Some ...
0
votes
1answer
106 views
Microsoft Word Docx Download Attachment Error
I have doc or docx document saved in Unix directory and integrate with web page which allow user to download the attachment. I have following code to stream the character and saves as Word document ...
0
votes
1answer
304 views
Docx4j buffered image
I am using docx4j to manipulate docx. What im trying to do is make buffered image of every image in all tables. I have instance of org.docx4j.wml.Drawing, is there any way to make buffered image from ...
0
votes
0answers
118 views
PPT to HTML or Image converter using Doc4x4J API
I am trying to convert PPT(or pptx) file to html but with it is not working on android as RenderAsSvgInHtml is NOT supported by android.
Please help me on this.
2
votes
1answer
72 views
unable to get the presProps.xml in my generated PPTX document
PresentationMLPackage presentationMLPackage = PresentationMLPackage.createPackage();
// Need references to these parts to create a slide
// Please note that these parts *already exist* - ...
0
votes
1answer
735 views
docx4j: help converting docx to PDF
My goal is to take an existing .docx file and convert it, from a Linux command-line, to PDF using docx4j (http://www.docx4java.orghttp://www.docx4java.org). The "getting started" guide ...
1
vote
1answer
273 views
Replace text with an image docx4j
I have an word template. There is an word photo that has to be replaced with an image. This has to be done with Docx4Java.
How do I do this?
0
votes
1answer
473 views
docx file generation using docx4j-java
I am generating a docx file with dynamic data in it using docx4j. The sample docx file is retrieved from database. Now i need to modify the dynamic data in the document.
I am using an xstream to ...
0
votes
1answer
109 views
Null Pointer Exception at OutputPropertiesFactory.java when using docx4j
I am using docx4j to extract an uploaded docx file, but getting the following exception
java.lang.NullPointerException
at ...

