MATLAB Community

MATLAB, community & more

Simple XML Node Creation

Last time in my XML series, I showed you how to use xmlread to create an XML Document object in MATLAB. I also promised to follow up on that with more information on how to use the Document object. Today, I want to show you how to create a DOM from scratch and then build up a simple XML document. To do that, I'm going use the canonical address book example as our sample XML document.

The first step is to create a new node. To do this, we need to use the Java method com.mathworks.xml.XMLUtils.createDocument() since MATLAB does not have native XML objects. In this example we create the top level ("root" or "document") node to be named AddressBook. Using the one argument version of xmlwrite will display the xml document in the Command Window.

docNode = com.mathworks.xml.XMLUtils.createDocument('AddressBook');
xmlwrite(docNode)
ans =

<?xml version="1.0" encoding="utf-8"?>
<AddressBook/>

Now that I have the document element, I want to populate it with child nodes. The document object is also the factory for new nodes. Therefore each time I create a new node, I do so from my docNode object. Also note, that I can't append a child element node to the document directly, I have to first call geDocumentElement to get the root element node of the document. It's all a little confusing, but I'm sure it made sense to the original designers of Apache's Xerces DOM (which is the implementation we use).

In the next step, I create an Entry element to represent a single person in my address book, and append it as a child to the root node.

entry_node = docNode.createElement('Entry');
docNode.getDocumentElement.appendChild(entry_node);
xmlwrite(docNode)
ans =

<?xml version="1.0" encoding="utf-8"?>
<AddressBook>
   <Entry/>
</AddressBook>

Now that there is an Entry in the address book, I will create data elements for it. To do this I create new element nodes and append those to my Entry node. I also create text Nodes to represent the text data of each of these elements. For example, a I create a "Name" node for the person's name, and put "Friendly Mathworker" (a colleague) as text node child of the Name element. Doing this allows me to build up the XML tree structure. In addition to text nodes, we can create attribute nodes (see next section), as well as CDATA, Comments, and other types of XML nodes.

add name, phone number

name_node = docNode.createElement('Name');
name_text = docNode.createTextNode('Friendly J. Mathworker');
name_node.appendChild(name_text);
entry_node.appendChild(name_node);

phone_number_node = docNode.createElement('PhoneNumber');
phone_number_text = docNode.createTextNode('(508) 647-7000');
phone_number_node.appendChild(phone_number_text);
entry_node.appendChild(phone_number_node);

xmlwrite(docNode)
ans =

<?xml version="1.0" encoding="utf-8"?>
<AddressBook>
   <Entry>
      <Name>Friendly J. Mathworker</Name>
      <PhoneNumber>(508) 647-7000</PhoneNumber>
   </Entry>
</AddressBook>

For the final step, I'm going to add an address to this person's entry. In addition to a simple a text node, I've added some attributes using two different methods. First, I use the convenience setAttribute(name, value) method to indicate that this Address is of type "work". In the second case I use the more formal node structure to create a "hasZip" attribute to indicate that I left off my company's zip code from the address. Note that this implementation of xmlwrite alphabetically sorts the attributes when displaying the document, whereas element nodes stay in the order in which they are appended.

address_node = docNode.createElement('Address');
address_node.setTextContent('3 Apple Hill Dr, Natick MA')
% set an attribute directly
address_node.setAttribute('type','work');

entry_node.appendChild(address_node);

% or create the attribute as a node
has_zip_attribute = docNode.createAttribute('hasZip');
has_zip_attribute.setNodeValue('no');
address_node.setAttributeNode(has_zip_attribute);

xmlwrite(docNode)
ans =

<?xml version="1.0" encoding="utf-8"?>
<AddressBook>
   <Entry>
      <Name>Friendly J. Mathworker</Name>
      <PhoneNumber>(508) 647-7000</PhoneNumber>
      <Address hasZip="no" type="work">3 Apple Hill Dr, Natick MA</Address>
   </Entry>
</AddressBook>

Next time I post about XML, I'll describe how to navigate a DOM to find data of interest.

|
  • print

Comments

To leave a comment, please click here to sign in to your MathWorks Account or create a new one.