Suppose the following code segment in a certain method that throws IOException was used to write to a file, DataOutputStream output = new DataOutputStream(new FileOutputStream(“datafile.dat”)); output.writeDouble(93.50); output.close();Which of the following may be a code segment for reading what was written in the datafile.dat (Assume that the code segment is in a method that throws IOException)

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter9: Completing The Basics
Section9.2: Exceptions And File Checking
Problem 3E
icon
Related questions
Question

Suppose the following code segment in a certain method that throws IOException was used to write to a file,
DataOutputStream output = new DataOutputStream(new FileOutputStream(“datafile.dat”));
output.writeDouble(93.50);
output.close();Which of the following may be a code segment for reading what was written in the datafile.dat (Assume that the code segment is in a method that throws IOException)
Choose your answer from the figure below: 

Choices: 

a. Option 1
b. Option 2
c. None of the above
// Option 1
DataInputStream input =
new DataInputStream(
new FileInputStream ("datafile.data"));
System.out.printin(input.readDouble());
// Option 2
DataInputStream input
new DataInputStream(
new FileInputStream ("datafile.data"));
System.out.printin(input.readNumber());
Transcribed Image Text:// Option 1 DataInputStream input = new DataInputStream( new FileInputStream ("datafile.data")); System.out.printin(input.readDouble()); // Option 2 DataInputStream input new DataInputStream( new FileInputStream ("datafile.data")); System.out.printin(input.readNumber());
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Files and Directory
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr