Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Consider a program to enter codes of one to eight characters along with an associated telephone number and associated notes. A code can represent a

Consider a program to enter codes of one to eight characters along with an associated telephone number and associated notes. A code can represent a person's name, a person's initials, a place, or anything. By using such a program, we could enter telephone numbers or notes and associate them with some brief code (i.e. string), which hopefully would be easy to remember. We could then retrieve a given telephone number or notes by entering the code. This might be a useful application for a simple cell phone . Codes are entered as 1 to 8 characters. Use "e" for enter, "f" for find, "l" for list, "q" for quit.

Command: e Bill Enter number: 419-536-1234 Enter notes:

Command: e JB Enter number: 510-0114 Enter notes:

Charlies place Command: e Jones Enter number: 413-257-1234 Enter notes:

Karen and Jason Command: e wm Enter number: 419-257-1234 Enter notes: Walmart

Command: f JB -- JB -- 617-510-0114 -- Charlies place

Command: f Jane ** No entry with code Jane Command: . . .

The "l" command will list all entries on the screen. For the input to this program, upper and lower case letters are considered equivalent. For example, if a telephone number is entered with the code "Jones", then the codes "JONES", "jones", and "JONes" will all retrieve the telephone number entered with "Jones". The entries are to be stored in a file from run to run. When the program begins, the entries in the file are to be read into an array. The array should allow for up to 200 entries. The phonebook need not be kept in alphabetical order. You may use a simple sequential search to retrieve entries. When the program is exited, the entries should be stored back in a file for use when the program is run again. Required Program Characteristics: The assignment is to write a program that incorporates the above features. The entries in the phonebook are to be represented with a simple class: class Entry { public String name, number, notes; } Use an array to store the entries. The array should allow for up to 200 entries. public Entry[] entryList = new Entry[200]; Use a static method to read the entries into the program from a file, and a static method to store the entries back into the file when the program is exited. public static void readPhoneBook (String FileName) throws Exception public static void storePhoneBook (String FileName) throws Exception Also, use a static method to list all entries: public static void listAllEntriess() Writing to a File public static void WritePhoneBook(String FileName) throws Exception{ PrintStream P = new PrintStream(FileName); for (int i=0; i < num_entries; i++) { P.println(entryList[i].name + "\t" + entryList [i].number + "\t" + entryList [i].notes); } P.close(); System.out.println(Phonebook stored.) } ( language is java and IDE is intellij)

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

Students also viewed these Databases questions

Question

Directors own a company. True/False?

Answered: 1 week ago