`.docx` is the file extension for files created using the default format of Microsoft Word 2007 or higher.

learn more… | top users | synonyms

0
votes
0answers
16 views

Word docx file parsing: Cutom Styles

I am working on a word document parser, and I have some problem understanding how to extract custom styles for paragraph. I am using Apache POI, I get style Id by using: ...
-2
votes
0answers
8 views

Download huge amount .docx [closed]

Hey in order to do a statistics I need to parse about 100 000 .docx documents. Any sugestions on what is the most efficient way to do download them?
0
votes
0answers
15 views

Document Download does not work when content is being served via HTTPS on C# .Net

I have an ASHX which I use to render a document. The initial issue was that I couldn't get the docx file to stream and I'm just getting a javascript error ("An invalid character was found in text ...
0
votes
3answers
48 views

Reading .docx file in java

I am trying to read one file in java, following is the code : public void readFile(String fileName){ try { BufferedReader reader= new BufferedReader(new FileReader(fileName)); ...
-1
votes
2answers
35 views

convert docx to doc with java

I have a legacy software which produces a xml and then with help of docx4j a docx document . I must also create a microsoft doc document from the xml file with java. How can I do that. I'd really ...
0
votes
0answers
12 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 ...
-1
votes
0answers
86 views

insert docx document into another docx using phpword [closed]

I am using phpword (http://phpword.codeplex.com). But phpword itself doesn't have ability to load template file and insert another docx into loaded template. example: 1. i load template.docx 2. i ...
0
votes
0answers
83 views

Disable UIWebView DiskImageCache

When loading documents that contain images (such as a Microsoft Word docx file), the UIWebView will always cache the images when it receives a memory warning regardless of the cache policy. ...
1
vote
1answer
17 views

aspose.word returns only first table and section

I have office word 2013 .docx file which has plenty of sections and tables. I don't know why all collection like below return single item while i have many of them in my .docx? Document document = ...
0
votes
1answer
118 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 ...
0
votes
0answers
16 views

OpenXML - insert image behind the text

I need to paste image behind the text using OpenXML SDK. I use this code to paste inline image: using a = DocumentFormat.OpenXml.Drawing; using pic = DocumentFormat.OpenXml.Drawing.Pictures; using ...
0
votes
0answers
16 views

Lost formatting and image after search and replace using python-docx

Experts, I have a template docx report, which has image and standard formatting inside it. What I did using docx, was just to search some tags, and replace it using the value from a config file. ...
0
votes
1answer
31 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: ...
-1
votes
2answers
65 views

Convert docx to clean html [closed]

I want to convert docx files to clean html file. I tried abiword and libre office with command prompt. Libre office can't convert as CLEAN html. Abiword can't convert tables. can you suggestion any ...
1
vote
1answer
111 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
2answers
54 views

PHP xPath docx parsing [duplicate]

I am trying to open up a Word 2007 document (docx), I unzip it successively but I am having an issue with the xPath portion of the code. I want to iterate each element and grab the text within the ...
0
votes
0answers
36 views

Phpdocx word documents are corrupt when adding images

I'm using Phpdocx 2.5 to convert html to docx. I'm using the embedHTML method with 'downloadImages' parameter set to true; When the html doesn't contain any images, document is generated just fine. ...
0
votes
1answer
89 views

Read text from a .doc or .docx file in asp.net using vb.net

I can upload a text file and read its text in a textbox. Now I want to do the same for .doc or .docx files. When I tried it in the similar way I read the text files I got some text which is in ...
0
votes
0answers
33 views

Docx to pdf via google app script does not longer work

docx to pdf via app script does not longer work: Steps to reproduce the problem upload a .docx in Google Drive and get docId Prepare a Google Apps Script function doGet(e) { var docId = ...
-2
votes
0answers
20 views

convert from docx to xml in php

I'd like to facilitate the usage of a system. Instead for the user to convert "save as" his file to xml inside word and then give that converted files inside the system, I'd like the user just gives ...
0
votes
1answer
125 views

How to generate word document having HTML as input from Novacode Docx

I need to generate word and pdf file from html data as input. For e.g if my html contains b tag then everything under the b tag should be generate bold. I am using iTextSharp to generate the pdf file ...
1
vote
1answer
53 views

How to add item transform to VS2012 .proj msbuild file

Based off this answer describing an item transform to convert image files from jpg to png, I made an item transform that converts .docx file to .pdf. When I call it from my projectname.proj build ...
1
vote
1answer
64 views

Export from Java EE + Struts2 to DOC files

Someone knows any java library that allows me to export information to doc format, I appreciate variety. My project is using Java EE and STRUTS2. So I need to evaluate and to compare the options. ...
0
votes
1answer
54 views

Constant NullReference Exception using OpenXML on a DOCX file

I'm trying to parse through a lengthy file and remove sections that I don't want. From research It appears that the OpenXml SDK was the easiest reference for manipulating and searching through the ...
2
votes
2answers
77 views

Why are the word docs, stored in mysql being displayed without page breaks?

I am storing .docx files in a mysql database as largeblobs, in separate chunks (so as not to overflow each blob). Then in a php, I display the document after "gluing" together the chunks from the ...
0
votes
1answer
38 views

.NET Merge multiple 1/3 A4 docx files into A4 docx file

I'm building an application that will be used for management of serial numbers and product information. Now in a certain step of the product the user will be printing labels to stick onto the boxes ...
0
votes
0answers
31 views

Set a column width of a table with DocX

I am working on an invoicing application in C# using DocX library from Codeplex. When I add rows to the invoice table, using the method below, the widths of the columns reset. I don't know how to set ...
0
votes
1answer
59 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
66 views

Checking the password of a MS Word document(docx) using Python [closed]

I'm trying to write a program in python(2.7) to find a password of a MS word(docx) document. What I need is to find a way to check whether the given password matches with the document's password, and ...
0
votes
0answers
36 views

Place images next to eachother in docx

[audit; block=begin; comm=w:p; sub1=image] --PageBreak-- [audit_sub1; block=begin;] ImageElement [audit_sub1.path;ope=changepic;from=[val];default=current;adjust] [audit_sub1; block=end;] ...
0
votes
1answer
47 views

How to update legacy PHP code that is corrupting docx and xlsx files?

I am working with some legacy PHP code and have run into Word Doc (docx) and Spreadsheet (xlsx) corruption. Here is the current code in the download.php file: $new_file_name = ...
-1
votes
1answer
50 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 ...
1
vote
1answer
84 views

C# Finding words in an office word document

I'm working on a program that would classify files to groups based on certain text found in them. Most of the files are possibly going to be .doc or .docx. My program should be able to compare a ...
0
votes
0answers
111 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 ...
2
votes
2answers
99 views

how do I create a corpus of *.docx files with tm?

I have a mixed filetype collection of MS Word documents. Some files are *.doc and some are *.docx. I'm learning to use tm and I've (more or less*) successfully created a corpus composed of the *.doc ...
0
votes
1answer
171 views

Python win32com.client.Dispatch looping through Word documents and export to PDF; fails when next loop occurs

Based on the script here: .doc to pdf using python I've got a semi-working script to export .docx files to pdf from C:\Export_to_pdf into a new folder. The problem is that it gets through the first ...
1
vote
1answer
47 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 ...
3
votes
1answer
50 views

Finding a table in a DOCX file using the DocX library

I have downloaded and started using the DocX library. I have a document called template.docx that is being loaded into memory. I have a table in that document, that has the id = 241. I want to get ...
3
votes
1answer
122 views

RStudio, knitr, pandoc, Word: how do I get a 'new page' in my docx?

I am using the RStudio, knitr, pandoc, Word combo to get my final results in a docx document. Occasionally I would like the report to continue on a new page. I can't find the way to achieve this. ...
0
votes
1answer
46 views

OpenTBS Multiple pages of repeated template containing table

Alright, I'm new to XML and OpenTBS so this concept of blocks etc is very confusing for me, and when I thought I had the gist of it, my client asked for even more of me. I've got a table of customers ...
1
vote
0answers
44 views

is it possible to edit docx in phonegap?

I need to be able to edit a docx document from a phonegap solution for iOS. I have been searching the web for several days. There is little to no information regarding this - all I have found is ...
1
vote
1answer
58 views

Get Xml Text node ID

I'm trying to parse through the document.xml file of a .docx file. I would like to search for Text and then return the node that text is located so I can then move up to the parent node and insert a ...
1
vote
0answers
103 views

How can I use docx.js to generate a Word document in JavaScript?

I am trying to use docx.js (Github repo) to generate a Word document but I can't seem to get it to work. I copied the raw code into the Google Chrome console after amending line 247 to fix a ...
0
votes
1answer
47 views

extra line spacing in the converted docx file using PHPword and simplehtmldom

I am using PHPword and simplehtmldom to convert html to docx format. I am using fckeditor html output as the input for converting to docx. A single line break is reflected as multiple lines in the ...
0
votes
0answers
33 views

reading and uploading docx, file from sd card

I want to read .docx files from sdcard in my android application and upload it to sharepoint.But when i am importing file text is not displaying correctly. It is showing symbols characters. How do i ...
0
votes
0answers
68 views

Python sends corrupt .docx as email attachment (google app engine)

I want to send an email from python with: thedoc = generate_doc() mail.send_mail(sender="Support", to="user@mail.co.uk', subject="RE: ref", ...
0
votes
0answers
101 views

download office 07/10 files from classic ASP script

Hi I am trying to fix a ASP script when we moved our IIS server from 6 to 7.5 and from windows Server 2003 to 2008... I had to make a few changes to the script to get it reworking like supressing the ...
0
votes
0answers
67 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 ...
-3
votes
1answer
90 views

How do you convert a large number of files to docx?

So you have a large number of files you need to convert to docx the only problem is you don't have time to save all of them. What do you do?
0
votes
0answers
37 views

Get docx from url to make some changes and send it by e-mail (or save in file system)

I want to download docx file at a specific address, open it with WordprocessingDocument.Open (Stream stream, isEditable), to make some changes to it, then send it through the mail or save it in file ...

1 2 3 4 5 11