Simply retrieve the text from the file and then use string.replaceAll("\\|", ",");
Here is an example using the code from erickson's answer:
private static String readFile(String path) throws IOException {
FileInputStream stream = new FileInputStream(new File(path));
try {
FileChannel fc = stream.getChannel();
MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, fc.size());
/* Instead of using default, pass in a decoder. */
return Charset.defaultCharset().decode(bb).toString();
}
finally {
stream.close();
}
}
You can use it like this:
String replacedTxt = readFile(path).replaceAll("\\|", ",");