-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddressBookSystem.java
More file actions
231 lines (211 loc) · 7.52 KB
/
Copy pathAddressBookSystem.java
File metadata and controls
231 lines (211 loc) · 7.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;
// Serializable classes allow objects to be saved to and loaded from a file
class Contact implements Serializable
{
private String name;
private String phoneNumber;
private String emailAddress;
public Contact(String name, String phoneNumber, String emailAddress)
{
this.name = name;
this.phoneNumber = phoneNumber;
this.emailAddress = emailAddress;
}
// Getters for contact attributes
public String getName()
{
return name;
}
public String getPhoneNumber()
{
return phoneNumber;
}
public String getEmailAddress()
{
return emailAddress;
}
// Method to edit contact information
public void editContact(String name, String phoneNumber, String emailAddress)
{
this.name = name;
this.phoneNumber = phoneNumber;
this.emailAddress = emailAddress;
}
@Override
public String toString()
{
return "Name: " + name + ", Phone: " + phoneNumber + ", Email: " + emailAddress;
}
}
class AddressBook implements Serializable
{
private ArrayList<Contact> contacts = new ArrayList<>();
// Method to add a contact to the address book
public void addContact(Contact contact)
{
contacts.add(contact);
}
// Method to remove a contact from the address book
public void removeContact(Contact contact)
{
contacts.remove(contact);
}
// Method to search for a contact by name
public Contact searchContact(String name)
{
for (Contact contact : contacts)
{
if (contact.getName().equalsIgnoreCase(name))
{
return contact;
}
}
return null; // Return null if the contact is not found
}
// Method to display all contacts in the address book
public void displayAllContacts()
{
for (Contact contact : contacts)
{
System.out.println(contact);
}
}
}
public class AddressBookSystem
{
public static void main(String[] args)
{
AddressBook addressBook = loadAddressBook(); // Load existing address book or create a new one
Scanner scanner = new Scanner(System.in);
while (true)
{
System.out.println("\nAddress Book System");
System.out.println("1. Add Contact");
System.out.println("2. Edit Contact");
System.out.println("3. Remove Contact");
System.out.println("4. Search Contact");
System.out.println("5. Display All Contacts");
System.out.println("6. Save and Exit");
System.out.print("Enter your choice: ");
int choice;
while (true)
{
if (scanner.hasNextInt())
{
choice = scanner.nextInt();
break;
}
else
{
System.out.println("Invalid input. Please enter a number.");
scanner.next();
}
}
switch (choice)
{
case 1:
Contact newContact = createContact(scanner);
addressBook.addContact(newContact);
System.out.println("Contact added.");
break;
case 2:
System.out.print("Enter the name to edit: ");
String editName = scanner.next();
Contact editContact = addressBook.searchContact(editName);
if (editContact != null) {
editContact(editContact, scanner);
System.out.println("Contact edited.");
} else {
System.out.println("Contact not found.");
}
break;
case 3:
System.out.print("Enter the name to remove: ");
String removeName = scanner.next();
Contact removeContact = addressBook.searchContact(removeName);
if (removeContact != null) {
addressBook.removeContact(removeContact);
System.out.println("Contact removed.");
} else {
System.out.println("Contact not found.");
}
break;
case 4:
System.out.print("Enter the name to search: ");
String searchName = scanner.next();
Contact foundContact = addressBook.searchContact(searchName);
if (foundContact != null) {
System.out.println("Contact found: " + foundContact);
} else {
System.out.println("Contact not found.");
}
break;
case 5:
System.out.println("All Contacts:");
addressBook.displayAllContacts();
break;
case 6:
saveAddressBook(addressBook); // Save the address book to a file
System.out.println("Address Book saved. Exiting.");
System.exit(0);
default:
System.out.println("Invalid choice. Please try again.");
}
}
}
private static Contact createContact(Scanner scanner)
{
System.out.print("Enter name: ");
String name = scanner.next();
System.out.print("Enter phone number: ");
String phoneNumber = scanner.next();
System.out.print("Enter email address: ");
String emailAddress = scanner.next();
return new Contact(name, phoneNumber, emailAddress);
}
private static void editContact(Contact contact, Scanner scanner)
{
System.out.print("Enter new name: ");
String name = scanner.next();
System.out.print("Enter new phone number: ");
String phoneNumber = scanner.next();
System.out.print("Enter new email address: ");
String emailAddress = scanner.next();
contact.editContact(name, phoneNumber, emailAddress);
}
private static AddressBook loadAddressBook()
{
AddressBook addressBook = null;
try
{
FileInputStream fileIn = new FileInputStream("addressbook.ser");
ObjectInputStream in = new ObjectInputStream(fileIn);
addressBook = (AddressBook) in.readObject();
in.close();
fileIn.close();
}
catch (IOException | ClassNotFoundException e)
{
// If there's an issue loading the address book, create a new one.
addressBook = new AddressBook();
}
return addressBook;
}
private static void saveAddressBook(AddressBook addressBook)
{
try
{
FileOutputStream fileOut = new FileOutputStream("addressbook.ser");
ObjectOutputStream out = new ObjectOutputStream(fileOut);
out.writeObject(addressBook);
out.close();
fileOut.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}