我正在尝试将包名称及其最新版本存储在地图中。
下面是我newDirs
的ArrayList<Map<String, String>>()
,我应该从中获取 Bundle 名称及其最新版本-
[{objectName=/storage/Model/Framework/1.0.0/, objectId=4fa042a5a56c861104fa05c246cf850522a2354ca223, objectType=DIRECTORY},
{objectName=/storage/Model/Framework/1.0.1/, objectId=4fa042a5a66c860d04fa056bbe1cf50522a14094ca3f, objectType=DIRECTORY}]
现在从上面的列表中,我应该提取最新版本的Framework bundle
. 所以在上面的例子中,它是1.0.1 version
并且包名是Framework
. 因此,在上述情况下,我的地图将存储Framework
为密钥和捆绑包的版本。1.0.1
下面是我的代码-
final List<Map<String, String>> newDirs = new ArrayList<Map<String, String>>();
for(String ss : list) {
//some code here for newDirs
Map<String, String> map = storageDirectorySort(newDirs);
System.out.println(map);
}
/**
* Sort the list and then return the map as the Bundle Name and its Latest version
*
*/
private static Map<String, String> storageDirectorySort(List<Map<String, String>> newDirs) {
Map<String, String> map = new LinkedHashMap<String, String>();
// do the sorting here and always give back the latest version of the bundle and its name
return map;
}
任何人都可以帮我解决这个问题。我不确定这样做的最佳方法是什么?