Forum: Java May 2nd, 2009 |
| Replies: 4 Views: 1,012 Oh rite, ya i get it now, thanks for all your help. |
Forum: Java May 2nd, 2009 |
| Replies: 4 Views: 1,012 Thanks for the help i figured it out, just used dvds.remove(dvdObj); after all and didn't go ahead with the binarySearch method! how would i solve getting not found dvd object every iteration? |
Forum: Java May 2nd, 2009 |
| Replies: 4 Views: 1,012 public void deleteDvd(String title)
{
String DvdCompare;
Dvd dvdObj;
Collections.sort(dvds);
for(int i = 0;i< dvds.size();i++)
{
DvdCompare = dvds.get(i).getdvdTitle();... |
Forum: Java Apr 27th, 2009 |
| Replies: 2 Views: 233 Thanks a million, its working now!! |
Forum: Java Apr 27th, 2009 |
| Replies: 2 Views: 233 I'm trying to install java on my home laptop and it isn't working, i followed all the steps outlined by my lecturer but the javac filename isn't executing properly. Is it setup right by me?? In... |