Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have 2 arrays String key[] , long value[] . keys can be duplicated . I need unique keys and their sum of the values in a map. Below is the code I am trying but i get Array out of bound exception

public HashMap < String, Long > getValueMap(String key[], long value[]) {
    Map newmap = new HashMap();
    long count = 0;
    for (int i = 0; i < value.length; i++) {
        for (int j = 0; j < value.length; j++) {
            if (key[i] == key[j]) {
                count = count + value[j];
            }
        }
        newmap.put(key[i], count);

        count = 0;
    }
    return (HashMap < String, Long > ) newmap;

}


long[] value = {};
String key[] = {};
int i = 0;
        if(!worklogs.isEmpty()){
            for(Worklog wl:worklogs){
                value[i]=wl.getValue();
                key[i]=wl.getAuthor();i++;

            }
        }

HashMap < String, Long > newhm = getValueMap(key, value);
Iterator entries = newhm.entrySet().iterator();
while (entries.hasNext()) {
    Map.Entry entry = (Map.Entry) entries.next();
    String newkey = (String) entry.getKey();
    Long newvalue = (Long) entry.getValue();
    System.out.println("Key = " + newkey + ", Value = " + newvalue);
}

The above code is modified to make it look simple. Please can someone help ?

share|improve this question
At what line is the exception thrown – Floris Jan 25 at 12:55
value[i]=wl.getValue(); – Mizan Jan 25 at 12:55
In one of your loops the length is variable, in the other it is hard coded to be 10. How long is the array you pass in? – Floris Jan 25 at 12:57
@Floris the length is variable .. I have put it in a for loop just for displaying ... I am actually iterating a list of objects(wl) – Mizan Jan 25 at 12:59
Can you explain what the second block of code is attempting to do? It doesn't compile in Java - is it meant to...? – DaveyDaveDave Jan 25 at 13:00
show 7 more comments

4 Answers

up vote 1 down vote accepted

This may be caused because arrays value and key haven't been initialized before trying to add values to them.

long[] value= new long[10];

String key[]= new String[10];

Why do you need to use arrays instead of Lists? Because if you need the length to ve variable I think it would be a more comfortable approach.

share|improve this answer
Ok i will try using List instead of arrays , – Mizan Jan 25 at 13:19

Key[] might be shorter than value[].

share|improve this answer

Replace

     for(i,i<10,i++){

With

for(i, i<Value.length(); i++){
share|improve this answer

Here array length equals 0

long[] value = {};

Here you try set value and get a error because array length == 0

value[i] = wl.getValue();

Use value.length instead of magic number 10

for(int i = 0; i < value.length; i++){  
   key[i] = wl.getAuthor();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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