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
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);
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
Vous pouvez le faire avec Commons Configuration:
Properties props = ConfigurationConverter.getProperties(new MapConfiguration(map));
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!")
);