Just a very small question... I seem to run into too much complexity here: I have to realize an index-structure like {42, someString}. I tried:

Object entry[][] = new Object[1][1];
ArrayList<Object> my_list = new ArrayList<Object>();

However that looks really strange. Isn't there a better much simpler solution to just store some Integer and a String? I need to perfrom search for the Strings and return the Integer... so I thought Collections and ArrayLists are good friends in the Java API.

link|improve this question

feedback

8 Answers

up vote 8 down vote accepted

Solution: use a Map

Uhm, do you perhaps need a Map?

Map<String,Integer> map = new HashMap<String,Integer>();
map.put("Some String", 42);
// or, more correctly:
map.put("Some String", Integer.valueOf(42));

You can search it using

Integer result = map.get("Some String");

Reference: Sun Java Tutorial > Collection Trail > Interfaces > The Map Interface


Fixing the OP's Code

BTW, the code in the question is flawed. Here's how you would do it if you wanted to use a List of object arrays (which you shouldn't):

// single dimension, not multi-dimension
Object[] entry = new Object[]{"Some String",Integer.valueOf(42)};
// use interface as variable, not implementation type
// generic type is object array, not object
List<Object[]> myList = new ArrayList<Object[]>();
// add array to list
myList.add(entry);

Now you could search like this:

for(final Object[] candidate : myList){
    if("Some String".equals(candidate[0])){
        System.out.println("Result: " + candidate[1]);
        break;
    }
}

However, this is just for reference, don't do it this way. The Collections Framework contains solutions for almost all standard cases. Use a Map.

link|improve this answer
1  
+1 except the key-value types should be the other way round for what the OP is asking -- to search by string. – casablanca Jan 14 '11 at 17:33
1  
@casablanca true, changed my answer – Sean Patrick Floyd Jan 14 '11 at 17:34
Thanks for the detailed answer. Got it ;) – wishi Jan 15 '11 at 10:04
feedback

Make a tuple class

 public Class IntegerStringTuple {
    private Integer number;
    private String string;

    //setters and getters etc.
 }
link|improve this answer
Nice idea (+1), but Map.Entry<K,V> is pretty much equivalent to this and it's built into all map implementations – Sean Patrick Floyd Jan 14 '11 at 17:43
feedback

Simply use a HashMap

Map<String,Integer> map = new HashMap<String,Integer>();
map.put("foo",42);
link|improve this answer
feedback

If I understand correctly you should use a Map.

Map<Integer, String> map = new HashMap<Integer, String>();

map.put(42, "someString");
String str = map.get(42);
link|improve this answer
feedback

why not use a map?

Map<String,Object>
link|improve this answer
feedback

It sounds like you want a Map

link|improve this answer
feedback

I would use a Map. Maps are used to store key value pairs.

Map<String, Integer> map = new HashMap<String, Integer>();
link|improve this answer
feedback

Does anyone knows how to create multidimensional String array with String keys? Such as PHP example

arr['fruits']['apple'] = 'green';
arr['fruits']['banana'] = 'yellow';

And dont recommend me to use Map, because Ill need to sort the array in future.

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.