13

I have the following XML example:

<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
    xmlns:custom="http://example.com/opensearchextensions/1.0/">
    <ShortName>Test</ShortName>
    <Description>Testing....</Description>
    <Url template="whatever" type="what" />
    <Query custom:color="blue" role="example" />
</OpenSearchDescription>

My concern is with Query element. It has a Namespace attribute and, in java, you will need a namespaceURI to retrieve the value.

My question is: How would I retrieve the list of namespaces from the root element (in this case, OpenSearchDescription element)? I want the attribute, prefix and namespace URI that I can use to request on Query.

Thanks.

PS: I'm using DOM in java, standard in Java SE. I'm willing to move to XPath, if it's possible. The requirement is that only the Java Standard API needs to be used.

2 Answers 2

19

This might get you started, factory.setNamespaceAware(true) is the key for getting the namespace data after all.

public static void main(String[] args) throws ParserConfigurationException, SAXException,
        IOException
{
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setNamespaceAware(true);
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document doc = builder.parse(new File(args[0]));
    Element root = doc.getDocumentElement();
    //prints root name space
    printAttributesInfo((Node) root);

    NodeList childNodes = root.getChildNodes();
    for (int i = 0; i < childNodes.getLength(); i++)
    {
        printAttributesInfo(childNodes.item(i));
    }
}

public static void printAttributesInfo(Node root)
{
    NamedNodeMap attributes = root.getAttributes();
    if (attributes != null)
    {
        for (int i = 0; i < attributes.getLength(); i++)
        {
            Node node = attributes.item(i);
            if (node.getNodeType() == Node.ATTRIBUTE_NODE)
            {
                String name = node.getNodeName();
                System.out.println(name + " " + node.getNamespaceURI());
            }
        }
    }
}
Sign up to request clarification or add additional context in comments.

1 Comment

Thanks, I have the similar code. The thing is to always check if Node.getNamespaceURI() returns is not null. That's how I check. It works.
0

I don't know if it's the appropriate way but what you could possibly do is to just take the attributes on OpenSearchDescription, find out if they are namespace declarations with the help of the constants located in javax.xml.XMLConstants e.g. XMLNS_ATTRIBUTE constant should be "xmlns". You could traverse all the attributes and save all attributes starting with that value as your NameSpaceUri's.

I think you should also have a look at the NameSpaceContext. I don't know how you load your document, but if you're using a XMLStreamReader then you can retrieve a NameSpaceContext from it that holds exactly the information you need. Here you can see where you can retrieve the NameSpaceContext in other ways.

Hope that helps.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.