up vote 1 down vote favorite
share [g+] share [fb]

Here is my scenario:

Selenium grabbed some text on the html page and convert it to a string (String store_txt = selenium.getText("text");) - the text is dynamically generated.

Now I want to store this string into a new text file locally every time I run this test, should I use FileWriter? Or is it as simple as writing a System.out.println("string");?

Do I have to write this as a class or can I write a method instead?

Thanks in advance!!

link|improve this question

9% accept rate
feedback

3 Answers

Use createTempFile to create a new file every time, use FileWriter to write to the file.

import java.io.File;
import java.io.IOException;
import java.io.FileWriter;

public class Main {
    public static void main(String[] args) throws IOException {
        File f = File.createTempFile("selenium", "txt");
        FileWriter writer = new FileWriter(f);
        writer.append("text");
    }
}
link|improve this answer
thanks! Is it possible to specify the location of the tempfile? – JLau Jun 9 '09 at 21:59
Just change the line: File f = File.createTempFile("selenium", "txt"); to: File f = new File("path to file")"; – Redbeard Jun 10 '09 at 0:33
If you want to append the data to a File create the Filewriter with new FileWriter(File, true). The function append only appends the data to the writer not the file. – Janusz Jul 8 '09 at 19:59
feedback

Yes, you need to use a FileWriter to save the text to file.

System.out.println("string");

just prints to the screen in console mode.

link|improve this answer
Watch out for the Path class... It's a Java 7 feature, it's included in the tutorials but no official release is available yet! – Beau Martínez Jun 9 '09 at 22:35
@Beau: Thanks for catching that for me. I changed my answer to link to an example that actually works. I don't know how Sun got the new tutorials to the top of the search rankings before the official release. :) – Bill the Lizard Jun 10 '09 at 0:33
Thanks for the link! – JLau Jun 10 '09 at 2:45
feedback

Always remember to close the filewriter afterwards using

writer.close()

Otherwise you could end up with a half written file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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