Questions about the old Microsoft Word file format and how to use it.
-1
votes
1answer
23 views
convert docx to doc with java
I produce from a xhtml file a docx document with docx4j and I must convert this docx document back to doc document programaticaly with java.
How can I do that. I'd really appreciate for any help.
...
0
votes
0answers
16 views
I can't add image to doc file using POI
i want image to doc file using poi. it's running and no error. but new created doc file is can't open.
private void word() throws IOException
{
try {
XWPFDocument document = new ...
-2
votes
0answers
85 views
How to read Microsoft Word files into Delphi? [closed]
How can I read a .doc file (regardless of the MSWord version) into my desktop app in Delphi 2007?
I need to read a .doc or .docx file and show its contents in screen.
I know there is a library that ...
0
votes
0answers
46 views
Edit Microsoft word document (doc) file
How to edit Microsoft word document (doc) file in Java? I used apache-poi jar files to extract doc file content. Code I used to extract doc file content is as follows.
public static void ...
0
votes
0answers
13 views
XWPFRun.setText() doesn't seem to respect line breaks or tabs?
Here is the sample code, the "\t" not work for this setText method?:
XWPFDocument document = new XWPFDocument();
XWPFParagraph tp = document.createParagraph();
XWPFRun tRun = tp.createRun();
...
3
votes
1answer
54 views
How to check for corrupted DOC and PDF files stored on the server with PHP? [closed]
I have a project about creating file uploading website for my university using PHP.
For every uploaded file, the website must check if the uploaded file is corrupted or not.
I've been searching for ...
0
votes
1answer
26 views
How can doc/docx files be converted to markdown or structured text?
Is there a program or workflow to convert .doc or .docx files to Markdown or similar text?
PS: Ideally, I would welcome the option that a specific font (e.g. consolas) in the MS Word document will ...
0
votes
2answers
90 views
Header image is not being displaying at the time of downloading word document in c#
I have generated an html document on the fly and later downloading it as word file with .doc extension. The problem is that on my machine (localhost) logo image is being displaying successfully but ...
-2
votes
0answers
25 views
How to scan a document and save it as pdf in android? [closed]
I'm working on an app that I need to take a photo of it with the camera and convert it to PDF file.
Something like camScanner app, I don't need OCR, just a high quality document so I can print it ...
-1
votes
0answers
40 views
XML Reader got problems need help :[
XML File:
<?xml version="1.0" encoding="UTF-8"?>
<q>
<questions Question0="How old are u?">
<correct>18</correct>
</questions>
<questions ...
1
vote
1answer
61 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.
...
1
vote
1answer
46 views
Retrieve title from thousands of ppt/xls/doc files
As the result of recovering data from a storage catastrophe, I ended up thousands of files named 0000000001.{doc,ppt.xls}, 0000000002.{doc,ppt.xls}, etc. The files are not corrupted.
Now my users ...
0
votes
1answer
81 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
98 views
Java : Microsoft word document to html converter style sheet
As required I am trying to convert doc or docx (Microsoft word) files to html format with Apache tika
I end up with following code which works fine,
But its not adding any style sheet to result ...
1
vote
2answers
55 views
Visual Studio, C# how to add a doc file as a resource
I am trying to add a word document (.doc) to my project as a resource so i could open it with a button. Please help...
0
votes
1answer
109 views
How to read a Word Doc in C# so that it displays as if it was opened in Notepad
I am trying to read a Word Doc in C#, and then display the result in a textbox. But I don't want to read just the text, but instead read the whole file, special characters included. I need it to ...
0
votes
0answers
36 views
How to replace duplicate bookmark defined in .DOT files while creation of word document from it in java code with openoffice?
How to replace duplicate bookmark defined in .DOT files while creation of word document from it in java code with openoffice?
I have writen following function to get TextRange by bookmark name. But I ...
0
votes
1answer
66 views
Image in template is not rendered in .doc file
I have a template that have some images one from file system and other are from project images folder.
Images in the template that are coming from the images folder is4 perfectly shown in the doc ...
0
votes
1answer
47 views
How to change duplicate rows to unique values in mysql databse
I have a database table with about 1M records. I need to find all duplicate names in this table and make them unique.
Id Name
1 A
2 A
3 B
4 C
5 C
Should be changed to...
Id Name
...
0
votes
0answers
95 views
QLPreviewController VS UIWebView in terms of render efficience and memory usage
I am working on an iPad project which lets users browse local docs, ppts, pdfs and etc..
I have two options to display these files:
First, I can use UIWebView to display them;
Alternatively, I can ...
-1
votes
2answers
58 views
Generating DOC/PDF with Python based on templates [closed]
All
I have a problem with Generating DOC/PDF Files in Python. I want to generate some dynamic data based templates. For exmaple, in a well documented templates, there are well-designed fonts, size ...
2
votes
3answers
154 views
How can I permit only .doc files for uploading?
Well this is my code but when I am trying to upload the doc file, the response is "Invalid file".....Thanks a lot. By the way my second question deals with rename of uploaded file to desired format ...
0
votes
0answers
61 views
Using JavaScript to create a .doc file
Is it possible to create a .doc format file in JavaScript natively?
Currently I have a Mozilla addon which creates .txt files but curious to see if it could be extended to .doc ..
file = ...
0
votes
0answers
114 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 = ...
1
vote
1answer
168 views
PHP HTML Word Doc not showing image generated via URL
I have a php script that generates a word document by creating it in HTML and outputting it to .doc when attaching static images from my website, the images load fine in Microsoft Word 03 and 2010. ...
0
votes
1answer
609 views
VB macro in excel to save an active doc to PDF with name from a Cell
I'm new to the forum and I'm happy to be part of it. I've been having this specific problem for about three weeks now.
What I'm trying to do is to create a macro that automates a function for me. I ...
0
votes
2answers
85 views
save text as pdf or .doc from word processor
I used ckeditor in a web page to provide an interface for the user to create his/her document.
Is there any technique that can help me to save the contents from ckeditor to the PDF and .doc file ...
1
vote
1answer
206 views
.net program to parse .doc file
I want to create an application which will be able to parse doc/docx files structure of this file is shown bellow:
par-000.01 - some content
par-000.21 - some content
par-000.31 - some content
...
0
votes
1answer
329 views
PDF, DOC Library on Windows 8 (RT) [closed]
I'm looking for a Library, SDK to integrate directly PDF,DOC Reader in an Windows Store (Windows RT) application developped in C#.
After some researches, I saw that there are some PDF SDK like Foxit ...
1
vote
0answers
372 views
how to export my sql table to a .doc file using php and download it
I have a table with large amount of data in my sql database, i have to take a copy of .doc or .pdf format using PHP coding.
I have to download while clicking the Download Button in my Page.
In my ...
-1
votes
1answer
155 views
Docx/Pdf/etc and WebView
How I can laod doc/docx/pdf and xls files into WebView?
I tried to use loadData(myBase64, "mime type for example application/pdf", "base64), I tried to use loadUrl("file///...") - no effect.
Or how ...
0
votes
0answers
67 views
iOS- Storing page location of DOC and PPT files
I am looking for a way to save page location data from a DOC or PPT file opened within an app (iOS). With a PDF file, it knows and displays the current page when viewing. Is this feature possible for ...
0
votes
1answer
231 views
Codeigniter - Export Database data in DOC format
I want to export data in my MYSQL Database into a DOC file using Codeigniter.
My code is as follows:
view named 'profile_top_view.php' where anchor is declared as :
<?php echo ...
-2
votes
1answer
82 views
how to open from my a .doc file with another app android [closed]
I am trying to open a file. Doc with uri:
else if ( path.getLastPathSegment().contains("doc") ) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, ...
2
votes
1answer
135 views
Writing to a .doc file
I am trying to write an Arabic sentence to .doc file. But each time I open the .doc file it shows a message that says file conversion and it asks in which Unicode I want to show the .doc file so I ...
1
vote
3answers
274 views
How to avoid java.lang.NoClassDefFoundError
I have a code for adding the texts to existing .doc file and it'll save that as another name by using apache POI.
The following is the code I have tried so far
import java.io.File;
import ...
0
votes
0answers
185 views
I am trying to edit a doc/docx file in Java using apache poi library
The plan is to change a word or phrase in the file and save the new output without changing the format ( font, size, paragraphs, etc) of the original file. So I would like the new file to be an exact ...
0
votes
0answers
47 views
MS Word save as referencing a field
So my company has created a form using MS Word 2007, a part if my job I have to fill out the fields they have created including order number, dates, time and vendor numbers. I have to save this ...
0
votes
1answer
353 views
PHP Convert Word file to HTML without losing styling and images
Is there an API for converting word files to HTML without losing the format?
Can the google documents API be used for this?
I tried saaspose but the returning result is always a server error.
...
-4
votes
1answer
303 views
How to convert a doc, docx as image using php?
i need to show employers resume in my website, you know that resume should be doc, and docx, so i need to show them in the browser for the reference,somebody said that we need to convert doc,docx into ...
0
votes
0answers
151 views
LibreOffice - minimal installation to convert documents to html
I have to extract some data from many .doc, .docx, .xls, .xlsx files using PHP. There are some native libraries, but I see that LibreOffice converts docs much better than others. I will run this ...
0
votes
0answers
68 views
What is the best way to represent word document in xml format? [closed]
I'm looking for the best library to get all word doc and docx elements like text,tables, figures and flowcharts elements to be extracted in XML format.
0
votes
1answer
279 views
Uploding doc & docx file in php not working
I searched for this issues on "stack" but for similar question no solution I found.
I have a code which is uploading two files(image & text) in two different folders.
$file_path = ...
0
votes
0answers
192 views
Internet Explorer cant open Microsoft Word file with extension “.DOC”
My Java web application is having a document file. When I try to download the file by clicking the link It opens a new page with corrupted characters as another tab. When i try to save the page it ...
1
vote
0answers
73 views
Convert massive ascii doc to unicode doc [closed]
I've a big doc file which has large russian ascii texts inside, it also contains equations etc.
My questions what the easiest way to convert the russian ascii text to unicode keeping the doc's ...
-1
votes
1answer
843 views
Online Doc,Docx viewer in php?
how can view a doc,docx files using php? there is any php or jquery script is available . i need to show job seekers resume by open the document in online
or any function or classes are available . ...
1
vote
1answer
398 views
doc, docx conversion to pdf using php
i've been searching for quite a long now to convert a word document (.doc & .docx ) to pdf.....my application is about taking a word document from clients than converting them to a pdf with added ...
0
votes
0answers
139 views
Convert doc to html with style
I'm facing style issue while converting .doc files to html texts using Apache POI's HWPFDocument class. Another problem is that it converts style tags too like this:
...
3
votes
1answer
1k views
Reading doc and docx files using C# without having MS Office installed on server
I'm working on a project (asp.net, c#, vb 2010, .net 4) and I need to read both DOC and DOCX files, that I've previosly uploaded (I've done uploading part). Tricky part is that I don't have MS Office ...
0
votes
0answers
24 views
RTF copied from window doc can not be converted
We have a control which derived from CWnd. And we want this control have the function of CRichEdit. Most function has been done. Recently,we need to add the function that can paste the text and format ...







