I have just over 100 lines of data and statistics that I need to print. I'm using:
PrintWriter p = new PrintWriter(fileName);
The reason why it's about 100 lines is because I need to print to both the System and the file (about 50 lines each). Is there any shorter way to print and "prettify" up my code?
System.out.println("Prints Stats"); //To System
p.println("Prints Stats"); //To File
etc
For every line printed to the System, there is an exact same line that is printed to the file. Is there a way to combine the two or to make it shorter? Or am I just stuck with this "ugly", long pile of prints?
There are several ways to do this.
Using a StringBuilder
If you are not writing tons of text, you could use a
StringBuilder
to create your output by appending to it, inserting stuff inside it etc., and once it's ready, print it to bothp
andSystem.out
.Writing your own
println()
If you're using just the
println()
method, you could write your own method that calls it for both writers:That is, assuming
p
is a field and not a local variable.Using format
Instead of using
println()
you could use theprintf()
orformat()
methods. The first parameter is a formatting string, and you can format several lines within one print using a format string. For example:Would print
And by using the same format string you can use two
printf
s to save on manyprintln
s:This would print the above three-line output to your file and then to your System output.