How to create and fetch associative array in Java, like this in php

$arr[0]['name'] = 'demo';

$arr[0]['fname'] = 'fdemo';

$arr[1]['name'] = 'test';

$arr[1]['fname'] = 'fname';

link|improve this question
feedback

12 Answers

up vote 43 down vote accepted

Java doesn't support associative arrays, however this could easily be achieved using a HashMap. E.g.,

Map<String, String> map = new HashMap<String, String>();
map.put("name", "demo");
map.put("fname", "fdemo");
// etc

map.get("name"); // returns "demo"

Even more accurate to your example would be to declare:

List<HashMap<String, String>> data = new LinkedList<HashMap<String, String>>();
data.add(0, map);
data.get(0).get("name"); 
link|improve this answer
1  
This will throw NullPointerException if outer map does not contain map for entry 0. Isn't PHP more permissive with $arr[0]['name'] (I don't know this language at all)? – Tomasz Nurkiewicz Feb 25 '11 at 21:49
1  
PHP wouldn't like it if you tried to access a key that doesn't exist, no :) – Svish Aug 26 '11 at 7:29
feedback

Java doesn't have associative arrays like PHP does.

There are various solutions for what you are doing, such as using a Map, but it depends on how you want to look up the information. You can easily write a class that holds all your information and store instances of them in an ArrayList.

public class Foo{
    public String name, fname;

    public Foo(String name, String fname){
        this.name = name;
        this.fname = fname;
    }
}

And then...

List<Foo> foos = new ArrayList<Foo>();
foos.add(new Foo("demo","fdemo");
foos.add(new Foo("test","fname");

So you can access them like...

foos.get(0).name;
=> "demo"
link|improve this answer
2  
Great Code,easy to understand,Thanks. – Suraj Sep 20 '11 at 14:48
feedback

You can accomplish this via Maps. Something like

Map<String, String>[] arr = new HashMap<String, String>[2]();
arr[0].put("name", "demo");

But as you start using Java I am sure you will find that if you create a class/model that represents your data will be your best options. I would do

class Person{
String name;
String fname;
}
List<Person> people = new ArrayList<Person>();
Person p = new Person();
p.name = "demo";
p.fname = "fdemo";
people.add(p);
link|improve this answer
I think I like this method better thanks. Coming from php where everything is so simple is sort of awkward using java, but great solution. Thanks. – frostymarvelous Jan 25 at 12:58
feedback

Look at the Map interface, and at the concrete class HashMap.

To create a Map:

Map<String, String> assoc = new HashMap<String, String>();

To add a key-value pair:

assoc.put("name", "demo");

To retrieve the value associated with a key:

assoc.get("name")

And sure, you may create an array of Maps, as it seems to be what you want:

Map<String, String>[] assoc = ...
link|improve this answer
feedback

There is no such thing as associative array in Java. Its closest relative is a Map, which is strongly typed, however has less elegant syntax/API.

This is the closest you can get based on your example:

Map<Integer, Map<String, String>> arr = 
    org.apache.commons.collections.map.LazyMap.decorate(
         new HashMap(), new InstantiateFactory(HashMap.class));

//$arr[0]['name'] = 'demo';
arr.get(0).put("name", "demo");

System.out.println(arr.get(0).get("name"));
System.out.println(arr.get(1).get("name"));    //yields null
link|improve this answer
What's the LazyMap.decorate and InstantiateFactory and stuff for? – Svish Aug 26 '11 at 7:30
feedback

Java equivalent of Perl's hash

HashMap<Integer, HashMap<String, String>> hash;
link|improve this answer
feedback

Java doesn't have associative arrays, the closest thing you can get is the Map interface

Here's a sample from that page.

import java.util.*;

public class Freq {
    public static void main(String[] args) {
        Map<String, Integer> m = new HashMap<String, Integer>();

        // Initialize frequency table from command line
        for (String a : args) {
            Integer freq = m.get(a);
            m.put(a, (freq == null) ? 1 : freq + 1);
        }

        System.out.println(m.size() + " distinct words:");
        System.out.println(m);
    }
}

If run with:

java Freq if it is to be it is up to me to delegate

You'll get:

8 distinct words:
{to=3, delegate=1, be=1, it=2, up=1, if=1, me=1, is=2}
link|improve this answer
feedback

Well i also was in search of Associative array and found the List of maps as the best solution.

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;


public class testHashes {

public static void main(String args[]){
    Map<String,String> myMap1 = new HashMap<String, String>();

    List<Map<String , String>> myMap  = new ArrayList<Map<String,String>>();

    myMap1.put("URL", "Val0");
    myMap1.put("CRC", "Vla1");
    myMap1.put("SIZE", "Vla2");
    myMap1.put("PROGRESS", "Vla2");

    myMap.add(0,myMap1);
    myMap.add(1,myMap1);

    for (Map<String, String> map : myMap) {
        System.out.println(map.get("URL"));
    }

    //System.out.println(myMap);

}


}
link|improve this answer
feedback

Actually Java does support associative arrays they are called dictionaries!

link|improve this answer
1  
If you refer to download.oracle.com/javase/1.4.2/docs/api/java/util/… then note that this class is (a) abstract and (b) deprecated. – Felix Kling Jun 9 '11 at 13:43
feedback

In JDK 1.5 (http://tinyurl.com/3m2lxju) there is even a note: "NOTE: This class is obsolete. New implementations should implement the Map interface, rather than extending this class." Regards, N.

link|improve this answer
feedback

Regarding the PHP comment 'No, PHP wouldn't like it'. Actually, PHP would keep on chugging unless you set some very restrictive (for PHP) exception/error levels, (and maybe not even then).

What WILL happen by default is that an access to a non existing variable/out of bounds array element 'unsets' your value that you're assigning to. NO, that is NOT null. PHP has a Perl/C lineage, from what I understand. So there are: unset and non existing variables, values which ARE set but are NULL, Boolean False values, then everything else that standard langauges have. You have to test for those separately, OR choose the RIGHT evaluation built in function/syntax.

link|improve this answer
feedback

PHP will generate a "Notice" and continue running if you attempt to access a variable that isn't set. Well written code will not generate notices, they are a sign of poor code, but it won't terminate the program.

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.