Win a copy of Raising Young Coders: A Parent’s Guide to Teaching Programming at Home this week in the General Computing forum!
Forums Login/signup

How to read and modify MS word using Java

+Pie Number of slices to send: Send
Hi,

I am trying to replace a word in a MS word file by another word and then save the modified version. Here is how I am doing it now:

I read the word file as bytes and construct the string by bytes and replace the word. Then I write the string to another file. The word can be found and replaced. But when I write the string back to a word file, MS word can't recognize it. It seems the file is corrupted.

I just replaced a word. I know I initially read in binaries. But I write them back as well. I don't know why MS word can't display it.

Please help. Thanks in advance.

--
Simon
1
+Pie Number of slices to send: Send
You can't treat binary files (like DOC and DOCX) as if they were text files - simple search-and-replace does not work on them. You'll need to resort to a specialized library that knows about the DOC/DOCX file formats, like Apache POI. See http://poi.apache.org/hwpf/quick-guide.html and https://coderanch.com/how-to/java/CreateWordDocument for more information and examples.
+Pie Number of slices to send: Send
Thanks for reply. Can you tell why we can't treat binaries as string. It is corrupted. But it's there. Why can't we use replace? I know POI but find it complex...
2
+Pie Number of slices to send: Send
Binary files (actually, structured file formats in general) have a lot of additional information that can get corrupted if you insert or delete characters. A simple example: Say you have a DOC file containing nothing but "This is a test sentence.". The word "test" is in bold. Now, somewhere in this file it has the information "characters 11 to 14 are in bold". If you just replace the word "a" by "another", then "11 to 14" is no longer accurate - the file contents are corrupted.

For some insight into how complex the Office file formats really are, read Why are the Microsoft Office file formats so complicated?
+Pie Number of slices to send: Send
Got it. Thank you.

reply
reply
This thread has been viewed 27050 times.
Similar Threads
Replacing a word in a text file
writing in MS word doc file
working within strings
How to replace data in a file
String replacer
More...

All times above are in ranch (not your local) time.
The current ranch time is
Jun 27, 2025 08:30:33.