Answered step by step
Verified Expert Solution
Question
1 Approved Answer
String fileName is read from input. The try block opens a file named fileName for output. Three integers are read from input, and each integer
String fileName is read from input. The try block opens a file named fileName for output. Three integers are read from input, and each integer is written into the file. Write the finally block to perform the following tasks, if the output file is open:
Write to the file "Number of input values read: followed by valueReadCount and a newline.
Close the file.
Ex: If the input is celeryoutput. txt then celeryOutput.txt contains:
Number of input values read:
Ex: If the input is output. bad then output.txt contains:
Number of input values read:
Ex: If the input is nofiletxt then the output is:
Error!
Note: Data output to a file may be lost if the file is not closed.
import java.util. Scanner;
import java.ioFileOutputStream;
import java.ioPrintWriter;
public class WriteCountCeleryFile
public static void mainString args
Scanner scnr new Scanner
System.in;
PrintWriter fileWriter null;
String fileName;
int celeryValue;
int valueReadCount ;
fileName next;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started