473,382 Members | 1,423 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Phone directory remove directory

I am trying to write a code for a Phone Directory program. This program is suppose to allow the user to enter a name or directory and then program can either add, save or even delete an entry. Also this program has more then one class and also uses an interface. Right now I am working on
ArrayBasedPD class. I am trying to write a code for the remove method (line 158) that allows the user to enter a name, once the program sees that the name is in the directory, it deletes it. The way I tried to do it was simply do the opposite of the Add method, instead of incrementing the size of the array, I would decrement it, because I would believe that when decrementing the size that an entry is being deleted.
This may be kinda confusinf to understand since their are more Classes for this program, such as the Class phone directory is an interface that is being implemented by theArrayBasedPD class (this one).

Expand|Select|Wrap|Line Numbers
  1. package CH01;
  2.  
  3. import java.io.*;
  4.  
  5.  /** This is an implementation of the PhoneDirectory interface that uses
  6.   *   an array to store the data.
  7.   *   @author Koffman & Wolfgang
  8.   */
  9.  
  10. public class ArrayBasedPD implements PhoneDirectory {
  11.  
  12.   // Data Fields
  13.  
  14.   /** The initial capacity of the array */
  15.   private static final int INITIAL_CAPACITY = 100;
  16.  
  17.   /** The current capacity of the array */
  18.   private int capacity = INITIAL_CAPACITY;
  19.  
  20.   /** The current size of the array (number of directory entries) */
  21.   private int size = 0;
  22.  
  23.   /** The array to contain the directory data */
  24.   private DirectoryEntry[] theDirectory =
  25.       new DirectoryEntry[capacity];
  26.  
  27.   /** The data file that contains the directory data */
  28.   private String sourceName = null;
  29.  
  30.   /** Boolean flag to indicate whether the directory was
  31.       modified since it was either loaded or saved. */
  32.   private boolean modified = false;
  33.  
  34.   /** Method to load the data file.
  35.        pre:  The directory storage has been created and it is empty.
  36.         If the file exists, it consists of name-number pairs
  37.         on adjacent lines.
  38.        post: The data from the file is loaded into the directory.
  39.        @param sourceName The name of the data file
  40.    */
  41.   public void loadData(String sourceName) {
  42.     // Remember the source name.
  43.     this.sourceName = sourceName;
  44.     try {
  45.       // Create a BufferedReader for the file.
  46.       BufferedReader in = new BufferedReader(
  47.           new FileReader(sourceName));
  48.       String name;
  49.       String number;
  50.  
  51.       // Read each name and number and add the entry to the array.
  52.       while ( (name = in.readLine()) != null) {
  53.         // Read name and number from successive lines.
  54.         if ( (number = in.readLine()) == null) {
  55.           break; // No number read, exit loop.
  56.         }
  57.         // Add an entry for this name and number.
  58.         add(name, number);
  59.       }
  60.  
  61.       // Close the file.
  62.       in.close();
  63.     }
  64.     catch (FileNotFoundException ex) {
  65.       // Do nothing — no data to load.
  66.       return;
  67.     }
  68.     catch (IOException ex) {
  69.       System.err.println("Load of directory failed.");
  70.       ex.printStackTrace();
  71.       System.exit(1);
  72.     }
  73.   }
  74.  
  75.   /** Add an entry or change an existing entry.
  76.       @param name The name of the person being added or changed
  77.       @param number The new number to be assigned
  78.       @return The old number or, if a new entry, null
  79.    */
  80.   public String addOrChangeEntry(String name, String number) {
  81.     String oldNumber = null;
  82.     int index = find(name);
  83.     if (index > -1) {
  84.       oldNumber = theDirectory[index].getNumber();
  85.       theDirectory[index].setNumber(number);
  86.     }
  87.     else {
  88.       add(name, number);
  89.     }
  90.     modified = true;
  91.     return oldNumber;
  92.   }
  93.  
  94.   /** Look up an entry.
  95.     @param name The name of the person
  96.     @return The number. If not in the directory, null is returned
  97.    */
  98.   public String lookupEntry(String name) {
  99.     int index = find(name);
  100.     if (index > -1) {
  101.       return theDirectory[index].getNumber();
  102.     }
  103.     else {
  104.       return null;
  105.     }
  106.   }
  107.  
  108.   /** Method to save the directory.
  109.       pre:  The directory has been loaded with data.
  110.       post: Contents of directory written back to the file in the
  111.             form of name-number pairs on adjacent lines.
  112.             modified is reset to false.
  113.    */
  114.   public void save() {
  115.     if (modified) { // If not modified, do nothing.
  116.       try {
  117.         // Create PrintWriter for the file.
  118.         PrintWriter out = new PrintWriter(
  119.             new FileWriter(sourceName));
  120.  
  121.         // Write each directory entry to the file.
  122.         for (int i = 0; i < size; i++) {
  123.           // Write the name.
  124.           out.println(theDirectory[i].getName());
  125.           // Write the number.
  126.           out.println(theDirectory[i].getNumber());
  127.         }
  128.  
  129.         // Close the file and reset modified.
  130.         out.close();
  131.         modified = false;
  132.       }
  133.       catch (Exception ex) {
  134.         System.err.println("Save of directory failed");
  135.         ex.printStackTrace();
  136.         System.exit(1);
  137.       }
  138.     }
  139.   }
  140.  
  141.   /** Find an entry in the directory.
  142.       @param name The name to be found
  143.       @return The index of the entry with the requested name.
  144.               If the name is not in the directory, returns -1
  145.    */
  146.   private int find(String name) {
  147.     for (int i = 0; i < size; i++) {
  148.       if (theDirectory[i].getName().equals(name)) {
  149.         return i;
  150.       }
  151.     }
  152.     return -1; // Name not found.
  153.   }
  154.   /**remove Entry
  155.    * @param name The name of the person to be deleted
  156.    * 
  157.    */
  158.      public void remove(String name) {
  159.      int i = find(name);
  160.       if(i <= -1)
  161.      System.out.println("Entry not found; cannot delete!");
  162.      else
  163.          theDirectory[size] = new DirectoryEntry(name);
  164.     size--; 
  165.  
  166.     modified = true;
  167.   }
  168.  
  169.  
  170.  
  171.   /** Add an entry to the directory.
  172.       @param name The name of the new person
  173.       @param number The number of the new person
  174.    */
  175.   private void add(String name, String number) {
  176.     if (size >= capacity) {
  177.       reallocate();
  178.     }
  179.     theDirectory[size] = new DirectoryEntry(name, number);
  180.     size++;
  181.   }
  182.  
  183.   /** Allocate a new array to hold the directory. */
  184.   private void reallocate() {
  185.     capacity *= 2;
  186.     DirectoryEntry[] newDirectory = new DirectoryEntry[capacity];
  187.     System.arraycopy(theDirectory, 0, newDirectory, 0,
  188.                      theDirectory.length);
  189.     theDirectory = newDirectory;
  190.   }
  191.  
  192.  
  193. }
Sep 10 '09 #1
6 4226
r035198x
13,262 8TB
Looks like you got some code from somewhere that you don't really understand what it does.
Better start with Sun's Java tutorial.
Sep 11 '09 #2
JosAH
11,448 Expert 8TB
That remove() method doesn't make sense to me:

Expand|Select|Wrap|Line Numbers
  1.    public void remove(String name) { 
  2.      int i = find(name); 
  3.       if(i <= -1) 
  4.      System.out.println("Entry not found; cannot delete!"); 
  5.      else 
  6.          theDirectory[size] = new DirectoryEntry(name); 
  7.     size--;  
  8.  
  9.     modified = true; 
  10.   } 
  11.  
I read it as: try to find that name; if not found print a message otherwise make a new entry? and decrement the size of it all?

kind regards,

Jos
Sep 11 '09 #3
Ok if that is what is wrong, then How can I make it delete the entry? I thought decrementing the size of the array would be deleting an entry out of the array. Or do I just decrement the size? Im confused.
Sep 11 '09 #4
JosAH
11,448 Expert 8TB
@falconsx23
For starters: you can't resize an array once you have instantiated one. Better use an ArrayList, you can delete any element from it given the index value of the element.

kind regards,

Jos
Sep 11 '09 #5
Well besides making an array list, is there anyway that I can remove an entry. I was thinking of another idea where I could overwrite an element in the array. Like it searches for a name, once the array is found, it takes the name before the found name and replaces moves it up. For instance:

Bob, Ray, Jill

Ray was found, but the remove method allows Bob to replace Ray, thus making it

Bob, Bob, Jill
Sep 11 '09 #6
JosAH
11,448 Expert 8TB
@falconsx23
The ArrayList class object can do that for you with its 'remove()' method; read the API documentation.

kind regards,

Jos
Sep 12 '09 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

5
by: joemono | last post by:
Hello everyone! First, I appologize if this posting isn't proper "netiquette" for this group. I've been working with perl for almost 2 years now. However, my regular expression knowledge is...
4
by: William Morris | last post by:
Our application tracks contact information. One of our clients, a car dealership, has asked about being able to enter a lastname and phone number and getting as much of the main form filled out as...
3
by: Danny Yeadon | last post by:
Hi I need to remove unwanted characters from phone numbers from my phone bill to analyse the data. Some examples are 02 48222222 i need to remove the space +61266667656 ...
1
by: htperth | last post by:
Hi all, Note that I'm new to LDAP and Active Directory and am writing an application that retrieves a simple phone list for all the users in our domain. So far I have the following console app...
1
by: htperth | last post by:
Hi all, Note that I'm new to LDAP and Active Directory and am writing an application that retrieves a simple phone list for all the users in our domain. So far I have the following console app...
6
by: homevista | last post by:
PART III: Putting things together In part I we examined the modem to verify that it supported voice. If so, we took a note about the voice data format that we would use. In the second part, we...
3
by: ryushinyama | last post by:
I am wanting to remove 1's that Canadian customers put in front of their numbers because when FedEx imports them for shipping they leave the 1 and cut off the last number. Other countries numbers...
4
by: Blue Streak | last post by:
Hello, Folks! Does anyone know of a website that lists the local phone number formats for each country? TIA...
7
by: Propoflady | last post by:
My contacts can have as many as five or six phone numbers - is it possible to make a query that puts the name, and each phone number after it on the same line - for this reason I have two tables -...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.