Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert List<NameValuePair> into a hashMap<String, String>?

I'm capturing parameters from a request url using com.apache.http.NameValuePairwhich basically store those params in List<NameValuePair>. To do certain checks and verifications on those params, I need to convert that list into a HashMap<String, String>. Is there a way to do this conversion?

like image 404
Donshon Avatar asked Dec 15 '22 07:12

Donshon


2 Answers

Do you use Java 8? In that case you could make use of the Collectors.toMap() method:

Map<String, String> mapped = list.stream().collect(
        Collectors.toMap(NameValuePair::getName, NameValuePair::getValue));

Otherwise you would have to loop through the elements

for(NameValuePair element : list) {
  //logic to convert list entries to hash map entries
}

To get a better understanding, please take a look at this tutorial.

like image 177
Jernej K Avatar answered Mar 04 '23 08:03

Jernej K


You can use it for Java 8

public static <K, V, T extends V> Map<K, V> toMapBy(List<T> list,
        Function<? super T, ? extends K> mapper) {
    return list.stream().collect(Collectors.toMap(mapper, Function.identity()));
}

And here's how you would use it on a List:

Map<Long, Product> productsById = toMapBy(products, Product::getId);

Follow the link:

  1. Converting ArrayList to HashMap
  2. Generic static method constrains types too much
  3. Java: How to convert List to Map
like image 44
SkyWalker Avatar answered Mar 04 '23 06:03

SkyWalker