Skip to content
Advertisement

For loop to write data to file Java

I need to implement a method called saveWorksToFile according to the Javadoc in the code. The format of the output written to the file should be the following this pattern:

enter image description here

where ARTIST_NAME is the name of the artist, NUM_WORKS is the number of works of that artist, and WORK_1, WORK_2, etc. are the toString representations of each of that artist’s works.

The last work should not have a line separator after it.

If an artist has no works, then the first three lines of the above format should be written, where the “—–” line has a line separator after it.

And this is the code I have:

JavaScript

I got these errors:

JavaScript

I have difficulties on making a new line, I tried both n and newLine() method but it doesn’t work. And also showing the number of works on the list should be correct. And for the loop, I think I should use for loop in this case to loop over the art works.

Any hints/ help would be great, thank you!

Advertisement

Answer

Below is my code for method saveWorksToFile. It is the only part of the code in your question that I changed. (Notes after the code.)

JavaScript

You are not meant to wrap the Writer parameter in a BufferedWriter. In general, for any method, you usually should not need to cast the parameter. Hence, in the above code, I use only the methods of class Writer. Also note that I do not close Writer since that should be left to the code that invoked method saveWorksToFile.

In order to write a line separator, I call method lineSeparator of class java.lang.System.

In order to print all the artist’s works one per line, I use a loop.

In order to ensure that the last entry in the artist’s list of works is written without a line separator, the first work is written without a line separator and every subsequent work is written with a preceding line separator.

Here is a method I wrote to test the above code. It uses class java.io.StringWriter which is a subclass of Writer since class Writer is abstract and has no public constructor. In general, you cannot instantiate an abstract class. You need to use a concrete subclass. I use StringWriter so as to be able to print its contents easily to the screen. You can use class java.io.FileWriter if you want to write to an actual file.

JavaScript

This is the output I got when I ran the above main method.

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement