LinkedHashMap for循环遍历

Map> futures = new LinkedHashMap>();

futures.put(Line_Num, executorService.submit(api));

for (Map.Entry> entry : futures.entrySet()) {
                                String futuresKey = entry.getKey();
                                Future futuresValue = entry.getValue();
                                try {
                                    String[] resStr = futuresValue.get();
                                    if (null != resStr) {
                                        String strKey = resStr[0];
                                        String strResult = resStr[1];

                                     }

                                     }

你可能感兴趣的:(java,LinkedHashMap)