ChangeFileContents Q

Hi All - I can read and write to text files no problem but the issue of updating or inserting text into say the middle of a file is a little trickier. My java book doesn't have examples and I can't find any in past forum discussions. In the example below I want to insert 'peter' for 'paul'
text.txt
hello john
hello paul
hello michael
import java.io.*;
public class Hello {
     public static void main(String args []) throws IOException {
          File file = new File("C:\\text.txt");
          FileReader fileReader = new FileReader(file);
          FileWriter fileWriter = new FileWriter(file, true);
          BufferedReader br = new BufferedReader(fileReader);
          String s = null;
          String newline = "\r\n";
          while ((s = br.readLine()) != null)
               if(s.equals("hello paul"))
                    fileWriter.write(newline + s.replaceFirst("paul","peter"));
          fileReader.close();
          fileWriter.close();
}My program above gives me
hello john
hello paul
hello michael
hello peter
which is not what I want. Incidentally I didn't expect it to work! What I want is:-
hello john
hello peter
hello michael
Any suggestions would be great. I'II keep looking for a solution in the meantime.
Rgds, Robbie

I was hoping I wouldn't have to re-engineer things. What if I just wanted to change the last line. Would I still have to use a RandomAccessFile?

Similar Messages

Maybe you are looking for

  • Pop-Up Menus and active content errors - Help!

    I'm attempting to add pop-up menus to my navigation bar, to make my site more user-friendly, but to no avail: I've tried designing pop-up menus in Fireworks, then importing the html code in, but that gives me errors when I try to insert the bar. Then

  • Password file gets changed when an account is locked/unlocked in 9i !!

    Hello All, I observed that in 9i (9.2.0.8 and 9.2.0.6 on Solaris 9), the timestamp of the orapw<SID> file changes when a non-sys account is LOCKED/UNLOCKED. There is no change in the size of the file, but timestamp alone gets changed to the time the

  • API's in APPS

    hi guys, Other than all the API's found in this link http://irep.oracle.com/index.html where can i find the links elsewhere.

  • Can't download music from iPhone onto macbook

    I want to download music from my phone onto my macbook, but when i sync music it says i only have 16 songs on my phone and will only download those, even though i have 150  songs on my phone... I'm on the iPhone 5s help!

  • LiveCycle Designer 8.0 - Linked Drop Down Lists

    Hi, Im new to Adobe LiveCycle and trying to link two drop down lists. I want the second drop down list to have certain options visible, depending upon the choice selected in the first list. I have spent a bit of time with JavaScript and trying to lin