Search:

Type: Posts; User: Purple01

Search: Search took 0.10 seconds.

  1. Replies
    2
    Views
    1,324

    Re: MultiHashMap - won't give the values back.

    I changed the String, String to String, Object.
    Now it works. :)
  2. Replies
    2
    Views
    1,324

    Re: MultiHashMap - won't give the values back.

    I now made this for it:



    for (String key : map.keySet()) {
    for (String value : map.values()) {
    if (Match.equals(key)) {
    System.out.println(key +...
  3. Replies
    2
    Views
    1,324

    MultiHashMap - won't give the values back.

    I have this MultiHashMap:

    Map<String, String> map= new MultiHashMap();

    But now I can't seem to get the keys and values out of the HashMap.

    map.getKey();

    Then I get the error:
    The...
Results 1 to 3 of 3