• 0

[JAVA] Replacing a text in a text file.


Question

Hi guys, I have another problem at hand now hope you guys can help me.

I have a text file as shown below.

  Quote
Mark:123:Red

Paul:746:Yellow

Ginger:447:Blue

I have a method to read in the text file and print out the line accoding to the user name.

eg. if user name is Paul, i will print out "PAUL:746:YELLOW".

Now I will like to edit YELLOW to ORANGE and then put it back to the text file in the same line.

it SHOULD look like this.

  Quote
Mark:123:Red

Paul:746:Orange

Ginger:447:Blue

The only solution i can think of is using a temp file to copy it over. Is there any other faster implementation or better ones ?

Link to comment
https://www.neowin.net/forum/topic/630880-java-replacing-a-text-in-a-text-file/
Share on other sites

10 answers to this question

Recommended Posts

  • 0

I'm new at Java, so shoot me if it's wrong but it's just an idea I would use.. 'ReadFile' to read the txt file, BufferedReader to go over the lines, add the lines to some sort of a Collection or just String[]. Then go over that Collection/ String[] again with a for each or something then use the replace/replaceAll() methods of String and eventually write every line back with FileOutputStream. (The last two, string replace / write output can be combined since you'll need to go over every line again anyway to write it out.

Hope it helps a bit :)

  • 0

Read into memory, make changes, write back to disk.

You'll find that there are no advantages to doing it in-place on the disk. In fact, reading bytes (as in single characters) from a disk is a great deal slower than reading a lot more... reading clusters at a time which varies from format to format but is certainly a lot more than thousands of characters at a time.

In the context of an academic exercise like this... they probably want you to use the java File classes and/maybe StringTokenizer... :)

Enjoy!

  • 0

Try something like this (I just wrote it in the reply box, it's untested):

try {
	BufferedReader in = new BufferedReader(new FileReader("in.txt"));
	PrintWriter out = new PrintWriter(new File("out.txt"));

	String line; //a line in the file
	String params[]; //holds the name:number:color parameters of each line

	while ((line = in.readLine()) != null) {
		params = line.split(":", 3); //split the line into the 3 parameters seperated by :
		if (params[0] == "Paul" && params[1] == "746") { //find the line we want to replace
			out.println(params[0] + ":" + params[1] + ":" + "Orange"); //output the new line
		} else {
			out.println(line); //if it's not the line, just output it as-is
		}
	}

	in.close();
	out.flush();
	out.close();
} catch (Exception e) {
	e.printStackTrace();
}

  • 0
  Poolius said:
Can you use logical equals (==) on string types in Java now? I thought you had to use .equals() as == checked memory references? I realise I'm being a bit trivial, the code kindly provided appears pretty sound :) .

No, you still should be using .equals()

Might work, but "best practices"...

  • 0

Oh sorry, lol :fun:

try {
	BufferedReader in = new BufferedReader(new FileReader("in.txt"));
	PrintWriter out = new PrintWriter(new File("out.txt"));

	String line; //a line in the file
	String params[]; //holds the name:number:color parameters of each line

	while ((line = in.readLine()) != null) {
		params = line.split(":", 3); //split the line into the 3 parameters seperated by :
		if ("Paul".equals(params[0]) && "746".equals(params[1])) { //find the line we want to replace
			out.println(params[0] + ":" + params[1] + ":" + "Orange"); //output the new line
		} else {
			out.println(line); //if it's not the line, just output it as-is
		}
	}

	in.close();
	out.flush();
	out.close();
} catch (Exception e) {
	e.printStackTrace();
}

PS, when you use "literal".equals(stringObj), you won't get a runtime error if stringObj is null (unlike stringObj.equals("literal")).

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Nice I guess. Azure's DaaS feature has supported that for years. It's so odd to me how MS is deploying Azure and 365 DaaS as two totally different services with different features. I would think the 365 cloud desktops would just be a slightly dumbed down frontend that manages the same service.
    • Oh and gaming on a PC cost way more. To get PS5 Pro performance on a PC it will cost you more, especially with the crazy GPU costs today. While you can play Last of US and Horizon, finally, you cant play GT7 unless you have a PS5 (other games as well).
    • IT admins will soon be able to provision cloud apps rather than entire Windows 365 Cloud PCs by Usama Jawad As we discussed earlier, Windows 365 Cloud PC is a neat way to access virtualized operating systems without getting access to physical hardware. It makes it much easier to work in hybrid or remote environments using hardware and software managed on the cloud by your organization. However, Microsoft is making this process even more convenient with a private preview for Windows 365 Cloud Apps. In its announcement, Microsoft has revealed that it is testing a way to deliver individual apps to users securely via Windows 365, instead of having an entire Cloud PC provisioned for them. It is important to note that these apps will still be hosted on the Cloud PC, a user just won't need access to a dedicated Cloud PC. Microsoft believes that this improved way of app delivery will facilitate seasonal and remote workers by getting them access to just the line-of-business (LOB) apps that they require, while also offering centralized and simplified management capabilities. Importantly, Redmond believes that this will facilitate migration from on-prem virtual desktop infrastructure (VDI) to the cloud too. Deploying this new experience is fairly straightforward for any IT admin who has prior experience with setting up Windows 365. They will need to select an "app-only" experience during the configuration process instead of the full desktop mode and then control the licenses and app access. During this private preview period, only apps available in the Start menu of the gallery or custom images are supported, but more types of apps will be supported for streaming as we get closer to general availability (GA). On the end-user side, customers with Cloud Apps provisioned for them will be able to launch them from the Windows App gateway. Any security policy that applies to the associated Cloud PC will also apply to the Cloud App in use. Microsoft has encouraged those interested in joining the private preview to contact their Microsoft account team or fill in this form. There is no word yet regarding general availability.
    • Tell me one Anti-Cheat that actually stops cheating on any Windows game? Yes that worthless Windows PC game anti-cheat can break some games on Linux, but like you said there is some games that have it and they don't break on Linux. Developers just need to get rid of anti-cheat on PC games as it is does nothing.
    • "Sony, with its Playstation 5, has the worst operating system for games, very complicated and unstable." Lol and it has sold 75 million devices, on track to outsell the PS4 at 130million. All the games on it seem to run just fine. Developers have often stated the tools for game development on the PS are better than Xbox. Microsoft can port their games to it fast enough.
  • Recent Achievements

    • Week One Done
      slackerzz earned a badge
      Week One Done
    • Week One Done
      vivetool earned a badge
      Week One Done
    • Reacting Well
      pnajbar earned a badge
      Reacting Well
    • Week One Done
      TBithoney earned a badge
      Week One Done
    • First Post
      xuxlix earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      668
    2. 2
      ATLien_0
      284
    3. 3
      Michael Scrip
      223
    4. 4
      +FloatingFatMan
      196
    5. 5
      Steven P.
      138
  • Tell a friend

    Love Neowin? Tell a friend!