Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I find and replace a word in several text files, using Java?

Here's how I do it for a single String...

public class ReplaceAll {

    public static void main(String[] args) {
        String str = "We want replace replace word from this string";  
        str = str.replaceAll("replace", "Done");
        System.out.println(str);
    }
}
share|improve this question

2 Answers

up vote 3 down vote accepted

Using FileUtils from Commons IO:

String[] files = { "file1.txt", "file2.txt", "file3.txt" };
for (String file : files) {
    File f = new File(file);
    String content = FileUtils.readFileToString(new File("filename.txt"));
    FileUtils.writeStringToFile(f, content.replaceAll("hello", "world"));
}
share|improve this answer
OK do i have to code like this: – Pacific Oct 15 '11 at 17:18
Is this code ok? import java.io.File; public class FindNReplace { public static void main(String args[]) { String[] files = { "file1.txt", "file2.txt", "file3.txt" }; for (String file : files) { File f = new File(file); String content = FileUtils.readFileToString(new File("filename.txt")); FileUtils.writeStringToFile(f, content.replaceAll("hello", "world")); } } } – Pacific Oct 15 '11 at 17:20
sorry i don't know how to answer – Pacific Oct 15 '11 at 17:20
it seems i can't answer to myself coze i'm new here, – Pacific Oct 15 '11 at 17:28
looks good, but you need to include that library... – aioobe Oct 15 '11 at 17:33
show 3 more comments

You can read in the file using a FileReader wrapped by a BufferedReader, pulling it in line by line, perform the same replace on the string that you show in your question, and write it back out to a new file.

share|improve this answer
Not if you want to replace for instance "\r\n" with "\n". – aioobe Oct 15 '11 at 17:13
@aioobe I don't see why that'd be especially problematic. Obviously if you need to replace something that may be longer than one line, it's a bit more complicated, but still better than having to have the whole file in memory at once. – Voo Oct 15 '11 at 18:00
i really don't get you now – Pacific Oct 15 '11 at 18:17
i just want to know what library i have to add to program – Pacific Oct 15 '11 at 18:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.