Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.10 seconds.

  1. Replies
    6
    Views
    1,957

    Re: create linked list from file?

    Take a look at the Scanner API for a tutorial on how to parse things: Scanner (Java Platform SE 6)
  2. Replies
    6
    Views
    1,957

    Re: create linked list from file?

    I'm not sure what you mean. If the next token is not an int, I don't see hasNextInt() returning true.

    But the code inside your while loop doesn't make a ton of sense either. Each iteration, you're...
  3. Replies
    6
    Views
    1,957

    Re: create linked list from file?

    What do you think your while statement is doing?

    while(player.hasNext() && player.hasNextInt()){

    If I'm understanding you correctly, your Scanner is going to be at a line that has a String...
Results 1 to 3 of 3