4.4 Using a text editor or word processor, create a text file containing a series of five surnames and examination marks, each item on a separate line. For example: Smith 47 Jones 63 By extending the code given below, create a random access file called results.dat, accepting input from the standard input stream (via a Scanner object) and redirecting input from the above text file. Each record should comprise a student surname and examination mark. When all records have been

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
4.4 Using a text editor or word processor, create a text file containing a series of
five surnames and examination marks, each item on a separate line. For
example:
Smith
47
Jones
63
...
By extending the code given below, create a random access file called
results.dat, accepting input from the standard input stream (via a Scanner
object) and redirecting input from the above text file, Each record should
comprise a student surname and examination mark, When all records have been
File Handling
written, reposition the file pointer to the start of the file and then read each
record in turn, displaying its contents on the screen.
import java.io.*;
import java.util.*;
public class FileResults
private static final long REC_SIZE - 34;
private static final int SURNAME_SIZE = 15;
private static String surname;
private static int mark;
public static void main (String() args)
throws IOException
***
*** SUPPLY CODE FOR main!
public static void writeString(
RandomAccessFile file, String text,
int fixedSize) throws IOException
int size = text.length ();
%3D
if (sizec=fixedSize)
file.writeChars (text);
for (int i=size; i<fixedSize; i++)
file.writeChar (' ');
else
file.writeChars (text.substring (
0, fixedSize));
public static String readString(
RandomAccessFile file, int fixedSize)
throws IOException
String value - "";
for (int i-0; i<fixedSize; i++)
value+=file.readChar () ;
return value;
Transcribed Image Text:4.4 Using a text editor or word processor, create a text file containing a series of five surnames and examination marks, each item on a separate line. For example: Smith 47 Jones 63 ... By extending the code given below, create a random access file called results.dat, accepting input from the standard input stream (via a Scanner object) and redirecting input from the above text file, Each record should comprise a student surname and examination mark, When all records have been File Handling written, reposition the file pointer to the start of the file and then read each record in turn, displaying its contents on the screen. import java.io.*; import java.util.*; public class FileResults private static final long REC_SIZE - 34; private static final int SURNAME_SIZE = 15; private static String surname; private static int mark; public static void main (String() args) throws IOException *** *** SUPPLY CODE FOR main! public static void writeString( RandomAccessFile file, String text, int fixedSize) throws IOException int size = text.length (); %3D if (sizec=fixedSize) file.writeChars (text); for (int i=size; i<fixedSize; i++) file.writeChar (' '); else file.writeChars (text.substring ( 0, fixedSize)); public static String readString( RandomAccessFile file, int fixedSize) throws IOException String value - ""; for (int i-0; i<fixedSize; i++) value+=file.readChar () ; return value;
Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY