public String getShowList(String res) { String s=sysCityMapper.getCodeList(); List<String> cityCode = ResolverUtil.StringToListNo(s); log.info("cityCode----->"+cityCode); for (String String: cityCode){ List<String> code = ResolverUtil.StringToListNos(String); log.info("code----->"+code); String codes = code.get(code.size() - 1); log.info("codes----->"+codes); } return null; }
时间: 2024-04-05 13:32:09 浏览: 102
这段代码的作用是从数据库中获取城市代码列表,然后将其转换为List<String>。然后,通过一个for循环,遍历这个List中的所有字符串,每个字符串又是一个以“-”分隔的代码序列。在循环内部,首先将当前字符串转换为List<String>,然后通过获取List的最后一个元素,即城市代码,将其赋值给codes变量。循环结束后,该方法返回null。
阅读全文