Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering how you would write the output of a method to a text file.

The method in question takes an AVL Binary Search Tree as a parameter, and returns all of its contents with indenting, spacing, etc.

The console output of the method is perfect, so I know it's nothing to do with the method itself. I've been trying to alter the method so that it prints to the console, as well as writing the same output to a text file. I've tried using a BufferedWriter, however the resulting output is terribly askew and isn't printing the entire tree (seems to be just the root).

Console Output:

enter image description here

I need to write this to a file^^^

Any ideas?

share|improve this question
1  
Instead of writing the String in the console, add it to a file using FileWriter or another class that would help you (like FileOutputStream). – Luiggi Mendoza Feb 24 at 1:57

closed as not a real question by Brian Roach, Luiggi Mendoza, bensiu, spajce, radai Feb 24 at 6:07

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You can write this to a file using this set of code, assuming you are returning a string:

    //Output file
    String output = myCoolFunction();
    BufferedWriter out = new BufferedWriter(new FileWriter("myfile.out"), 32768);
    out.write(output);
    out.close();
share|improve this answer

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