Java -need逻辑,用于添加和删除hashmap,比较值而不是匹配键

时间:2012-02-28 18:02:25

标签: java hashmap

我的UI中有2个下拉菜单,选择一个会给另一组复选框配置为从下拉列表中选择的特定值。一次我在选中的值和复选框中的值之间添加一些连接,它应该保存某个地方并正确识别该元素,以便我可以删除它,仍然保留之前的值

---- ---- UI

Select box
        <button style="display: none;" type="submit" id="selected" name="_eventId_getid"></button> 
        <label for="name" >Product</label> 
        <form:select path="selectedProduct" disabled="${isDisabled}" onchange="simulateClick('selected');">
            <form:option value="0">Select...</form:option>
            <form:options items="${createProject.product}" itemLabel="name" itemValue="id" />
        </form:select>
    checkbox, depending upon slectbox   
  <button style="display:none;" type="submit" id="selectCopyType" name="_eventId_submit"> </button>
        <c:if test="${not empty createProject.elementType}">    

                <button style="display: none;" type="submit" id="copy" name="_eventId_getId2"></button> 
                    <input class="checkAllCheckbox" id="selectall"  name="selectall" type="checkbox"/>
                    <span style="display:inline; margin-left:auto;">Select All</span>
                    <!-- id must be the same as listId above -->
                    <div class="CFbox" id="id"  >
                    <form:checkboxes items="${ProjectCommand.ElementType}" onclick="simulateClick('copy')" path="CopyType" cssClass="case" itemValue="id" itemLabel="name"  name="case"/>                   </div>
              </div> 

      Class Command
      private String seelctedProduct;
      private List<Integer> CopyType;
      private List<Class1> class1


  Class Class1


      private Integer seq = 0;
      private String product;
     private String ElementName

      public void getSelectedCopy(Command command)
      {
        Map<Integer,String[]>map= new HashMap<Integer,String[]>();
        if (command.CopyType() != null && command.getCopyType().size() > 0)
        {
          List<Class1> copyList = new ArrayList<Class1>();

          Integer Seq = 0;
         if (command.getClass1() != null && command.getClass1().size() <= command.getCopyType.size())
          {
            //Max CfSeq is stored in the variable -1 . 
           Seq = command.getClass1().get(command.getClass1.size() - 1).getSeq();    
          }

         for ( int copytype : command.getCopyType())
          {

           if (command.getCopyType().size() >1)
            { 
             if (copyType <= Seq)
              {
               copyList.add(command.getClass1().get(Seq - 1));
                continue;
              }
            }
            cfSeq++;

            map.put(Seq,new String[]{command.getseelctedProduct(),"copyType"});
            System.out.println("map"+map);
            Class1 objclass1= new Class1();
            objclass1.setProduct(command.getseelctedProduct());
            objclass1.setElementName(copyType + "");
            objclass1.setSeq(Seq);
            copyList.add(objclass1);

          }
          command.setClass1(copyList);
        }
        else
        {
          command.setClass1(null);
        }
      }

现在我没有得到正确的序号,我无法从地图中删除正确的成员..希望你们得到我想要的东西!!谢谢你的帮助。我想我需要逻辑来添加和删除hashmap比较值而不是匹配键,如果你有其他建议正确显示序列而不是每次清理对象..请建议

1 个答案:

答案 0 :(得分:0)

如果你的问题确实是一个值 - &gt;密钥查找,你应该看看番石榴或Commons集合。

番石榴:  http://www.discursive.com/books/cjcook/reference/collections-sect-key-by-value

Commons collections bidimap:  http://commons.apache.org/collections/api-3.1/org/apache/commons/collections/BidiMap.html

Commons集合有点陈旧和稳定,而番石榴提供了许多新的范例和使用泛型的类型安全。