I've looked at the posts on here to do with sorting and searching but can't seem to get my arraylist to sort or search using
Collections.sort(myarraylist);
The data that is stored in the arraylist is only stored when the user enters data in textfields in a GUI. I have used getText to store the data (that the user enters into the JTextFields) in the arraylist.
The user should be able to enter a firstname or surname into a
String searchstring = JOptionPane.showInputDialog("Enter Name");
The sort should be done after the user adds the each new contact into the arraylist by surname.
So my question is:
- How can I sort the arraylist?
- How can I search the arraylist?
Please can you advise me how to proceed as I am really stuck!!