如何从Hashtable <Integer,Hashtable <String,Integer >> h获取值

时间:2019-10-24 05:39:20

标签: java dictionary collections hashmap

如何获取给定的HashTablehashtable key内部的整数值

HashMap<Integer, String[]> map;

Hashtable<Integer,Hashtable<String,Integer>> h = 
                                    new Hashtable<Integer,Hashtable<String,Integer>>();

for(int z = 0;z<Integer.MAX_VALUE;z++) {
    String temp4 = map.get(k)[j];
    h.put(z, new Hashtable(){{put(temp4,j);}});
}

2 个答案:

答案 0 :(得分:1)

第一个解决方案是最简单的,但需要默认的中间值。

Optional<Integer> firstValue = h.entrySet().stream()
      .filter(e -> e.getKey().equals(1))
      .flatMap(e -> e.getValue().entrySet().stream())
      .filter(e -> e.getKey().equals("firstKey"))
      .map(e -> e.getValue())
      .findFirst();

firstValue.ifPresent(System.out::println);

基于流的解决方案:

Optional

可以通过private static <K,T> Optional<T> from(Map<K, T> from, K key) { return (from.containsKey(key)) ? Optional.of(from.get(key)) : Optional.empty(); } 引入辅助方法。

from(h, 1)
      .flatMap(x -> from(x, "firstKey"))
      .ifPresent(System.out::println);

那么它看起来更具可读性:

private static <K, T> Function<Map<K, T>, Optional<T>> forKey(K key) {
  return (Map<K, T>  from) -> from(from, key);
}

或基于以前的方法添加另一种方法:

Optional.of(h)
      .flatMap(forKey(1))
      .flatMap(forKey("firstKey"))
      .ifPresent(System.out::println);

然后可以这样写:

{{1}}

答案 1 :(得分:0)

这不是一个优雅的解决方案,仅针对我的要求:

        for(Integer key : h.keySet()) {
        //System.out.println(key + " "+h.get(key));
        Hashtable temp1 = h.get(key);
        String key1 = temp1.toString();
        key1 = key1.substring(1);
        String separator ="=";
        int sepPos = key1.lastIndexOf(separator);
        key1 = key1.substring(0,sepPos);
        Enumeration enu = temp1.elements();
        int col = (int)enu.nextElement();
        for(int p=0;p<colums;p++)//j moves over columns
        {   
            if(p == col) {
                for(int r = 0;r<rows;r++) {
                    String temp = fr.get(r)[p];
                    //System.out.println(" "+temp+ " ");
                    if(temp.contentEquals(key1)) {
                        String temp2 = Integer.toString(p);
                        temp2 = temp2+ "*";
                        fr.get(r)[p] = temp2; 
                    }
                }
            } 
        }