Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CHALLENGE ACTIVITY 4 . 3 . 1 : Exceptions with files. 5 2 2 5 6 2 3 5 7 8 1 9 4 qx

CHALLENGE
ACTIVITY
4.3.1: Exceptions with files.
5225623578194 qx3zqy7
Jump to level 1
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 3247,30, then celeryOutput.txt contains:
32
47
30
Number of input values read: 3
Ex. If the input is output. txt bad 4730, then output.txt contains:
Number of input values read: 0
Ex. If the input is /nofile.txt, 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.io.FileOutputStream;
import java.io.PrintWriter;
public class WriteCountCeleryfile {
public static void main(String [] args){
Scanner scnr = new Scanner(
System.in);
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Business Process Driven Database Design With Oracle PL SQL

Authors: Rajeev Kaula

1st Edition

1795532386, 978-1795532389

More Books

Students also viewed these Databases questions