Java tutorial
//package com.java2s; //License from project: Open Source License import java.util.Properties; import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { public static Properties extractProperties(Node node) { Properties props = new Properties(); NamedNodeMap attributes = node.getAttributes(); if (attributes != null) { for (int i = 0; i < attributes.getLength(); i++) { Node item = attributes.item(i); props.put(item.getNodeName(), item.getNodeValue()); } } return props; } }