Search:

Type: Posts; User: Twon23

Search: Search took 0.06 seconds.

  1. Thread: Breaking of Ice

    by Twon23
    Replies
    1
    Views
    1,164

    The are good free java tutorials on this site and...

    The are good free java tutorials on this site and many other tutorials.

    http://thenewboston.org/tutorials.php

    Hope this helps.
  2. Replies
    4
    Views
    1,884

    Re: Avoiding concurrent modification exception?

    This seems to work for me so far:


    private static void TitleCheck(String n){
    boolean found = false;
    String title = null;
    int pos;
    pos = n.indexOf(':');
    if(pos != -1){ ...
  3. Replies
    4
    Views
    1,884

    Re: Avoiding concurrent modification exception?

    What I'm trying to do is read through a text file and look for titles then add them to an array just the once. The titles are repeated multiple times in the text file, so I'm trying to just add them...
  4. Replies
    4
    Views
    1,884

    Avoiding concurrent modification exception?

    Hi all.

    I'm wanting to modify an array while it is In use but this throws the exception in the title above. So what is the best way around this? Cloning the array? If I clone the array what is the...
Results 1 to 4 of 4