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:

I need to write this to a file^^^
Any ideas?

Stringin the console, add it to a file usingFileWriteror another class that would help you (like FileOutputStream). – Luiggi Mendoza Feb 24 at 1:57