Gli usi per una mappa hash dovrebbero essere un indice di valori hash per trovare i valori molto più velocemente. Non so il motivo per cui si dispone di chiave e valori come stringhe, ma se avete solo bisogno i valori che si possa fare in quel modo:
ArrayList<HashMap<String, String>> test = new ArrayList<>();
String sum = "";
for (HashMap<String, String> hash : test) {
for (String current : hash.values()) {
sum = sum + current + "<#>";
}
}
String[] arr = sum.split("<#>");
Non è un bel modo, ma la richiesta non è troppo;)
contiene i dati ottenuti da un webservice che serve dati JSON. Ho bisogno di estrarre ogni campo come un array di stringhe per popolarle in viste diverse come viwepagers e viste elenco. –
http://stackoverflow.com/questions/1090556/java-how-to-convert-hashmapstring-object-to-array.check questo potrebbe aiutare. – Raghunandan
Nell'array si desidera inserire le chiavi, i valori o entrambi di hashmap? – Alberto