web-dev-qa-db-fra.com

Conversion d'un objet Java Map en un objet Properties

Quelqu'un est-il en mesure de me proposer un meilleur moyen que celui décrit ci-dessous pour convertir un objet Java Map en objet Propriétés?

    Map<String, String> map = new LinkedHashMap<String, String>();
    map.put("key", "value");

    Properties properties = new Properties();

    for (Map.Entry<String, String> entry : map.entrySet()) {
        properties.put(entry.getKey(), entry.getValue());
    }

Merci

27
Joel

Utilisez la méthode Properties::putAll(Map<String,String>):

Map<String, String> map = new LinkedHashMap<String, String>();
map.put("key", "value");

Properties properties = new Properties();
properties.putAll(map);
65
Boris Pavlović

vous pouvez aussi utiliser Apache commons-collection4

org.Apache.commons.collections4.MapUtils#toProperties(Map<K, V>)

exemple:

Map<String, String> map = new LinkedHashMap<String, String>();

map.put("name", "feilong");
map.put("age", "18");
map.put("country", "china");

Properties properties = org.Apache.commons.collections4.MapUtils.toProperties(map);

voir javadoc

https://commons.Apache.org/proper/commons-collections/apidocs/org/Apache/commons/collections4/MapUtils.html#toProperties(Java.util.Map)

5
feilong

Vous pouvez le faire avec Commons Configuration:

Properties props = ConfigurationConverter.getProperties(new MapConfiguration(map));

http://commons.Apache.org/configuration

2
Emmanuel Bourg

Essayez MapAsProperties from Cactoos :

import org.cactoos.list.MapAsProperties;
import org.cactoos.list.MapEntry;
Properties pros = new MapAsProperties(
  new MapEntry<>("foo", "hello, world!")
  new MapEntry<>("bar", "bye, bye!")
);
1
yegor256