I'm using the following program to read in a huge search engine database dump on search queries (>100 MB) and delete unneeded table data so that I'm left with just the keyword, so that I can mine the data for trends for one of my classes.
Here's what I have so far:
import java.io.*;
public class FileUtil {
public static void main(String args[]) {
try {
FileInputStream fStream = new FileInputStream("\\searches.txt");
BufferedReader in = new BufferedReader(new InputStreamReader(fStream));
//PrintStream out = new PrintStream(new FileOutputStream("searchesEdited.txt"));
while (in.ready()) {
System.out.println(in.readLine());
String keyword = "foo"; // selected keyword to delete in txt file
//search for string
//delete the string
//write newly edited file to searchesEdited.txt
}
in.close();
} catch (IOException e) {
System.out.println("File input error");
}
}
}
This works as expected and outputs all the data to the console, so I'm in the right direction. Now I just need to replace/delete the passed keyword. I have looked into the replaceAll() method but can't seem to get it implemented correctly. Any help would be greatly appreciated.