I'm using ArrayList and i add data in specific indexes, how can i check if a specific index exists ?

should i just get() and check the value or wait for an exception or is there another way ?

update

thank you for your answers but i add stuff in specific indexes

once i will add at index 8, other times at index 2. the length of the list will not show me the available indexes.

link|improve this question

2  
Have a look at a Set perhaps its more suited to what you need? – Paul Whelan Jan 25 '10 at 11:15
nice... 5 answers within one minute! – jwoolard Jan 25 '10 at 11:16
2  
Then you're gonna have to get() and check for null - don't rely on exceptions though. Consider using a HashTable instead java.sun.com/j2se/1.4.2/docs/api/java/util/Hashtable.html – Amarghosh Jan 25 '10 at 11:22
awesome!! I'll use HashTable thanks – ufk Jan 25 '10 at 11:30
feedback

7 Answers

up vote 14 down vote accepted

The method arrayList.size() returns the number of items in the list - so if the index is greater than or equal to the size(), it doesn't exist.

link|improve this answer
1  
That should be "greater or equal to the size()" since it is a zero-based index. – McDowell Jan 25 '10 at 11:18
@McDowell - oops, fixed it. thanks. – Amarghosh Jan 25 '10 at 11:20
1  
Also worth mentioning that to make this atomic you should probably perform the size() check and corresponding conditional index based look-up whilst locking the list. – Adamski Jan 25 '10 at 11:22
1  
please note that i mark this answer at the correct is because the owner (Amarghosh) as answered my question in a comment to my question. HashTable will suite my needs much better. – ufk Jan 25 '10 at 11:31
feedback

You can check the size of an ArrayList using the size() method. This will return the maximum index +1

link|improve this answer
feedback

Regarding your update (which probably should be another question). You should use an array of these objects instead an ArrayList, so you can simply check the value for null:

Object[] array = new Object[MAX_ENTRIES];
..
if ( array[ 8 ] == null ) {
   // not available
}
else {
   // do something
}

Best-Practice

If you don't have hundred of entries in your array you should consider organizing it as a class to get rid of the magic numbers 3,8 etc.

Control flow using exception is bad practice.

link|improve this answer
feedback

This is what you need ...

public boolean indexExists(final List list, final int index) {
    return index >= 0 && index < list.size();
}

Why not use an plain old array? Indexed access to a List is a code smell I think.

link|improve this answer
Not always, since he might want the ArrayList to grow over time, and that a array can't do. – Coyote21 Apr 11 '11 at 21:51
1  
Shouldn't this be < list.size()? – Samuel Tardieu Apr 22 at 12:27
feedback

If your index is less than the size of your list then it does exist, possibly with null value. If index is bigger then you may call ensureCapacity() to be able to use that index.

If you want to check if a value at your index is null or not, call get()

link|improve this answer
1  
Calling ensureCapacity(int) won't increase the size of the List, only the capacity; i.e. "potential size" so out of bounds index look-ups would still fail. – Adamski Jan 25 '10 at 11:19
Also, why call ensureCapacity(int) at all? It could be an incredibly expensive operation if for example the list's current size is 5 and you want to determine the value of item#: 100,000,000. – Adamski Jan 25 '10 at 11:20
I meant that indices less than size() always exist, those which are >= size() don't and one can't use them (== call set()) until list becomes big enough. Calling ensureCapacity is not enough indeed, one needs to change the size by adding elements. – Dmitry Jan 25 '10 at 12:19
Wrong explanation about what ensureCapacity(int) actually does. It does nothing with ArrayList size. – Mohsen Feb 7 at 17:14
feedback

You could check for the size of the array.

package sojava;
import java.util.ArrayList;

public class Main {
    public static Object get(ArrayList list, int index) {
        if (list.size() > index) { return list.get(index); }
        return null;
    }

    public static void main(String[] args) {
        ArrayList list = new ArrayList();
        list.add(""); list.add(""); list.add("");        
        System.out.println(get(list, 4));
        // prints 'null'
    }
}
link|improve this answer
feedback

While you got a dozen suggestions about using the size of your list, which work for lists with linear entries, no one seemed to read your question.

If you add entries manually at different indexes none of these suggestions will work, as you need to check for a specific index.

Using if ( list.get(index) == null ) will not work either, as get() throws an exception instead of returning null.

Try this:

try {
    list.get( index );
} catch ( IndexOutOfBoundsException e ) {
    list.add( index, new Object() );
}

Here a new entry is added if the index does not exist. You can alter it to do something different.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.