vote up 3 vote down star
2

Hello,

I am a beginner Java programmer. I am attempting to make a simple text editor. I have got the text from the text field into a variable that's a String, called "text".

My question is, how can I save the contents of the "text" variable to a text file?

Thank you!

flag

8 Answers

vote up 1 vote down

It's better to close the writer/outputstream in a finally block, just in case something happen

finally{
   if(writer != null){
     try{
        writer.flush();
        writer.close();
     }
     catch(IOException ioe){
         ioe.printStackTrace();
     }
   }
}
link|flag
vote up 1 vote down

Java Almanac is a good source for simple examples. It's a good place for beginners, even if it's a bit dated.

link|flag
vote up 1 vote down

You can use the modify the code below to write your file from whatever class or function is handling the text. One wonders though why the world needs a new text editor...

import java.io.*;

public class Main {

public static void main(String[] args) {

    try {
        String str = "SomeMoreTextIsHere";
        File newTextFile = new File("C:/thetextfile.txt");

        FileWriter fw = new FileWriter(newTextFile);
        fw.write(str);
        fw.close();

    } catch (IOException iox) {
        //do stuff with exception
        iox.printStackTrace();
    }
}

}

link|flag
That doesn't close the file in case of an exception. – Tom Hawtin - tackline Jun 27 at 20:02
vote up 5 vote down

Apache Commons IO contains some great methods for doing this, in particular FileUtils contains the following method:

static void writeStringToFile(File file, String data)

which allows you to write text to a file in one method call:

FileUtils.writeStringToFile("test.txt", "Hello File");

You might also want to consider specifying the encoding for the file as well.

link|flag
vote up 5 vote down

If you're simply outputting text, rather than any binary data, the following will work:

PrintWriter out = new PrintWriter("filename.txt");

Then, write your String to it, just like you would to any output stream:

out.println(text);

You'll need exception handling, as ever.

Edit: further simplified per Jonik's comments.

link|flag
What's exception handling? Where will this file be saved? – Justin White Jun 27 at 21:18
it'll be saved in the current directory, whatever that is as far as the JVM is concerned. Exception handling is the try{} catch(){} stuff you see in other answers :) – Jeremy Jun 27 at 21:42
@Justin, you could also pass an absolute path (e.g. "/tmp/filename.txt") to the FileOutputStream constructor, to save the file anywhere you want – Jonik Jun 28 at 8:54
Btw, this could be simplified using the convenience constructors PrintStream has had since 1.5. This would suffice: PrintStream out = new PrintStream("filename.txt"); – Jonik Jun 28 at 16:22
Futhermore, as we're outputting text, PrintWriter would be more appropriate, and just as convenient. From PrintStream javadocs: "The PrintWriter class should be used in situations that require writing characters rather than bytes." – Jonik Jun 28 at 16:29
vote up 4 vote down

Just did something similar in my project. Use FileWriter will simplify part of your job. And here you can find nice tutorial.

	BufferedWriter writer = null;
	try
	{
		writer = new BufferedWriter( new FileWriter( yourfilename));
		writer.write( yourstring);

	}
	catch ( IOException e)
	{
	}
	finally
	{
		try
		{
			if ( writer != null)
				writer.close( );
		}
		catch ( IOException e)
		{
		}
     }
link|flag
2  
Great, 22 lines of code to achieve what an off-the shelf library will do in 1. – skaffman Jun 27 at 19:44
1  
Removing all try/catch and simplify it I'm also able to do it in one line just by doing the: (new BufferedWriter( new FileWriter( filename))).write(str); – Artem Barger Jun 27 at 19:46
1  
That is an overly messy way to do it. – Tom Hawtin - tackline Jun 27 at 20:02
So, show your simple and nice solution. I would be glad to learn how to do it in better way. – Artem Barger Jun 27 at 20:06
vote up 3 vote down

Use FileUtils.writeStringToFile() from Apache Commons IO. No need to reinvent this particular wheel.

link|flag
1  
No need for that dependency on such a simple problem. – duffymo Jun 27 at 19:59
2  
I couldn't disagree more. These libraries are there so we don't introduce subtle bugs in such a simple solution. – skaffman Jun 27 at 20:04
1  
+1 for applying "know and use the libraries" – Jonik Jun 27 at 20:43
1  
I couldn't disagree more. It's a "beginner Java programmer" who's trying to learn the language. I'd say learn how to code it properly once before diving into 10,001 dependencies. Even an experienced developer should weigh functionality against dependencies. And yes, I do appreciate the value of libraries. I've been using Spring for five years and counting. – duffymo Jun 27 at 21:02
1  
No, obviously not. I'm only disagreeing that your solution might not be the first thing I'd throw at someone who's a beginner Java programmer. You aren't suggesting that you've never written such a thing, are you? – duffymo Jun 27 at 21:25
show 4 more comments
vote up 2 vote down

Take a look at the Java File API

a quick example:

try {
    PrintStream out = new PrintStream(new FileOutputStream("filename.txt"));
    out.print(text);
    out.close();
} catch (IOException e) {
    e.printStackTrace();
}
link|flag
1  
You don't want to close that file, ever? – Tom Hawtin - tackline Jun 27 at 20:01
I said it was a quick example, not the full solution. I'll add it. – Jorn Jun 27 at 20:06
IOFoundException? – Thorbjørn Ravn Andersen Jun 27 at 22:38
oops........... – Jorn Jun 27 at 23:50
Just to nitpick - if an IOException is thrown, the file will not be closed - a resource leak. – McDowell Jun 28 at 12:52
show 1 more comment

Your Answer

Get an OpenID
or

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