Results 1 to 6 of 6
Thread: Compile Trouble
- 04-17-2008, 08:21 AM #1
Member
- Join Date
- Apr 2008
- Posts
- 6
- Rep Power
- 0
Compile Trouble
netbeans says that it won't compile because of the GetData commands. Please help tell me why it won't run.
Java Code:public class Student { private String id, firstname, lastname; Student(String i, String f, String l) { id = i; firstname = f; lastname = l; } String getid() { return id; } String getfirstname() { return firstname; } String getlastname() { return lastname; } }Java Code:import java.util.ArrayList; public class Admissions { Student student; ArrayList<Student> list; int index; boolean found; //2a Admissions() { list = new ArrayList<Student>(); } //2b void add(Student s) { list.add(s); } //2c int size() { return list.size(); } //2d boolean empty() { return list.isEmpty(); } Student get(int i) { return list.get(i); } //2e void search(String id) { int i = 0; int length = list.size(); while (i < length && !found) { student = list.get(i); if (student.getid().equalsIgnoreCase(id)) { found = true; } else { i++; } } index = i; } //2f Student remove(int i) { return list.remove(i); } int getIndex() { return index; } Student getStudent() { return student; } boolean inList() { return found; } ArrayList getList() { return list; } }Java Code:import javax.swing.JOptionPane; import java.util.ArrayList; import javax.swing.JTextArea; import javax.swing.JScrollPane; class Registration { public static void main(String[] arg) { boolean done = false; final String menu = "1. Add Student \n2. Drop Student \n3. Print Report\n4. Exit"; Admissions adm = new Admissions(); Admissions drop = new Admissions(); while (!done) { int option = GetData.getInt(menu); switch (option) { case 1: String last = GetData.getWord("Enter Lastname"); String first = GetData.getWord("Enter Firstname"); String id = GetData.getWord("Enter id number"); Student student = new Student(last, first, id); adm.add(student); break; case 2: if (!adm.empty()) { id = GetData.getWord("Enter id number"); adm.search(id); if (!adm.inList()) { id = "ID number " + id; JOptionPane.showMessageDialog(null, "student not registered", "Registration", JOptionPane.INFORMATION_MESSAGE); } else { int index = adm.getIndex(); Student s = (Student) adm.remove(index); drop.add(s); } } else { JOptionPane.showMessageDialog(null, "List is empty", "Registration", JOptionPane.INFORMATION_MESSAGE); } break; case 3: ArrayList list = adm.getList(); String str = "Students who are registered\n" + report(list); JTextArea text = new JTextArea(str, 10, 30); JScrollPane pane = new JScrollPane(text); display(pane, "Report", JOptionPane.INFORMATION_MESSAGE); break; case 4: display("Done!!!", "Terminating Admission", JOptionPane.WARNING_MESSAGE); done = true; break; default: display("", "Wrong option", JOptionPane.ERROR_MESSAGE); break; } } } static String report(ArrayList list) { int length = list.size(); String str = ""; for (int i = 0; i < length; i++) { Student s = (Student) list.get(i); str = str + s.getid() + " " + s.getfirstname() + "\n"; } return str; } static void display(String info, String heading, int type) { JOptionPane.showMessageDialog(null, info, heading, type); } static void display(JScrollPane pane, String heading, int type) { JOptionPane.showMessageDialog(null, pane, heading, type); } }
- 04-17-2008, 08:32 AM #2
Can you post the reported exceptions?
Be specific....
regards,
sukatoa
- 04-18-2008, 05:37 PM #3
Member
- Join Date
- Apr 2008
- Posts
- 28
- Rep Power
- 0
First of all what is Getdata and where is this thing come from,
- 04-18-2008, 07:56 PM #4
Are there any more classes? With what you gave us, I see 5 error in Registration; all pertaining to the GetData object.
I don't know what it is that you are trying to do, but I do know, that you are calling on an object, GetData, that doesn't exist. So, you will have to create it.
If your simply trying to ask the user to enter in the last name, then you might try:
Based on the information you provided, that is the best answer I can give you.Java Code:String last = JOptionPane.showInputDialog(null, "Enter Lastname");
Good luck!-- www.firemelt.net --
Cheer up, the worst has yet to come...
- 04-20-2008, 06:26 PM #5
Member
- Join Date
- Apr 2008
- Posts
- 1
- Rep Power
- 0
^If done that way, how would you alternate the code "int option = GetData.getInt(menu);" ?
- 04-21-2008, 02:02 AM #6
Simple, you use the Integer.parseInt() method.
If you really want to get fancy to avoid any error, use a try catch statement:Java Code:String stroption = JOptionPane.showInputDialog(null, menu, "Choose an Option:", JOptionPane.QUESTION_MESSAGE); int option = Integer.parseInt(stroption);
And life is good....Java Code:String stroption = JOptionPane.showInputDialog(null, menu, "Choose an Option:", JOptionPane.QUESTION_MESSAGE); int option; try { option = Integer.parseInt(stroption); } catch(Exception E) { option = 0; }-- www.firemelt.net --
Cheer up, the worst has yet to come...
Similar Threads
-
compiling trouble
By capacitator in forum CLDC and MIDPReplies: 4Last Post: 06-10-2008, 10:12 PM -
[SOLVED] trouble learnig swing
By monir6464 in forum AWT / SwingReplies: 5Last Post: 05-08-2008, 06:01 AM -
trouble with program
By jimJohnson in forum New To JavaReplies: 1Last Post: 04-03-2008, 09:29 AM -
Having trouble with array
By ice22 in forum New To JavaReplies: 3Last Post: 11-13-2007, 03:06 AM -
JTree trouble
By Alantie Vala in forum AWT / SwingReplies: 3Last Post: 07-31-2007, 11:12 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks