<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/sjxml/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Wed, 29 Jan 2014 23:01:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/sjxml/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Fatih</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,35 +1,4 @@
-Reading XML Files
-=============
-
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-:::java
-File xmlFile = new File("input.xml");
-XMLDocument document = new XMLDocument(new FileInputStream(xmlFile));
-// Get the root node of the XML document
-XmlNode root = document.getRoot();
-// Get the first child of the root
-XmlNode firstChild = root.getFirstChild();
-// Get the first child with tag name "body"
-XmlNode body = firstChild.getFirstChild("body");
-String[] attributes = body.getAttributes();
-// Access attributes list
-for (String name : attributes) {
-    // Extract values of the attributes by attribute name
-    System.out.println(String.format("%s =&gt; %s\n", name, body.getAttribute(name)));
-}
-// Access the list of the children
-Enumeration children = body.getChildren();
-while (children.hasMoreElements()) {
-    XmlNode child = children.nextElement();
-    System.out.println(String.format("%s is a child of body", child.getTagName()));
-}
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-API Reference
-=============
-XmlDocument
------------
-XmlNode
--------
-
+[Reading XML Files]
+[Writing XML Files]
+[API Reference]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih</dc:creator><pubDate>Wed, 29 Jan 2014 23:01:38 -0000</pubDate><guid>https://sourceforge.net9579a1982a880e5d8fcb223ef211d8d9f9013f03</guid></item><item><title>Home modified by Fatih</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,5 +1,3 @@
-Welcome to your wiki!
-
 Reading XML Files
 =============

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih</dc:creator><pubDate>Wed, 29 Jan 2014 22:51:41 -0000</pubDate><guid>https://sourceforge.neta5426108027b4d6a940905846622cfacf6ae20d0</guid></item><item><title>Home modified by Fatih Irmak</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -34,5 +34,4 @@
 XmlNode
 -------

-[[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih Irmak</dc:creator><pubDate>Wed, 29 Jan 2014 15:48:14 -0000</pubDate><guid>https://sourceforge.netb6895342fd240106e69a657bb6c51ec2883f434e</guid></item><item><title>Home modified by Fatih Irmak</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,38 @@
 Welcome to your wiki!

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+Reading XML Files
+=============

-The wiki uses [Markdown](/p/sjxml/wiki/markdown_syntax/) syntax.
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+:::java
+File xmlFile = new File("input.xml");
+XMLDocument document = new XMLDocument(new FileInputStream(xmlFile));
+// Get the root node of the XML document
+XmlNode root = document.getRoot();
+// Get the first child of the root
+XmlNode firstChild = root.getFirstChild();
+// Get the first child with tag name "body"
+XmlNode body = firstChild.getFirstChild("body");
+String[] attributes = body.getAttributes();
+// Access attributes list
+for (String name : attributes) {
+    // Extract values of the attributes by attribute name
+    System.out.println(String.format("%s =&gt; %s\n", name, body.getAttribute(name)));
+}
+// Access the list of the children
+Enumeration children = body.getChildren();
+while (children.hasMoreElements()) {
+    XmlNode child = children.nextElement();
+    System.out.println(String.format("%s is a child of body", child.getTagName()));
+}
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+API Reference
+=============
+XmlDocument
+-----------
+XmlNode
+-------

 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih Irmak</dc:creator><pubDate>Wed, 29 Jan 2014 15:47:03 -0000</pubDate><guid>https://sourceforge.net705bb4e5e5be3b217520d96cc6268dec5c85dbf9</guid></item><item><title>Discussion for Home page</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;h1 id="reading-xml-files"&gt;Reading XML Files&lt;/h1&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="nb"&gt;File&lt;/span&gt; &lt;span class="n"&gt;xmlFile&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;new&lt;/span&gt; &lt;span class="nb"&gt;File&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;quot;input.xml&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;XMLDocument&lt;/span&gt; &lt;span class="n"&gt;document&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;XMLDocument&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;new&lt;/span&gt; &lt;span class="nx"&gt;FileInputStream&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;xmlFile&lt;/span&gt;&lt;span class="p"&gt;));&lt;/span&gt;
&lt;span class="c1"&gt;// Get the root node of the XML document&lt;/span&gt;
&lt;span class="nx"&gt;XmlNode&lt;/span&gt; &lt;span class="n"&gt;root&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;document.getRoot&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="c1"&gt;// Get the first child of the root&lt;/span&gt;
&lt;span class="nx"&gt;XmlNode&lt;/span&gt; &lt;span class="n"&gt;firstChild&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;root.getFirstChild&lt;/span&gt;&lt;span class="p"&gt;();&lt;/span&gt;
&lt;span class="c1"&gt;// Get the first child with tag name &amp;quot;body&amp;quot;&lt;/span&gt;
&lt;span class="nx"&gt;XmlNode&lt;/span&gt; &lt;span class="n"&gt;body&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;firstChild.getFirstChild&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;&amp;quot;body&amp;quot;&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="kt"&gt;String&lt;/span&gt;&lt;span class="err"&gt;[&lt;/span&gt;&lt;span class="cp"&gt;]&lt;/span&gt; attributes = body.getAttributes();
// Access attributes list
for (String name : attributes) {
    // Extract values of the attributes by attribute name
    System.out.println(String.format(&amp;quot;%s =&amp;gt; %s\n&amp;quot;, name, body.getAttribute(name)));
}
// Access the list of the children
Enumeration&lt;span class="nt"&gt;&amp;lt;XmlNode&amp;gt;&lt;/span&gt; children = body.getChildren();
while (children.hasMoreElements()) {
    XmlNode child = children.nextElement();
    System.out.println(String.format(&amp;quot;%s is a child of body&amp;quot;, child.getTagName()));
}

API Reference
=============
&lt;/pre&gt;&lt;/div&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih Irmak</dc:creator><pubDate>Wed, 29 Jan 2014 15:44:27 -0000</pubDate><guid>https://sourceforge.net558e5181dd6106731a66a5a944512223dbb6d3cd</guid></item><item><title>Home modified by Fatih Irmak</title><link>https://sourceforge.net/p/sjxml/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/sjxml/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
&lt;ul class="md-users-list"&gt;
&lt;li&gt;&lt;a href="/u/theregulus/"&gt;Fatih Irmak&lt;/a&gt; (admin)&lt;/li&gt;
&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-52cb88a204161f69250c191e" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Fatih Irmak</dc:creator><pubDate>Tue, 07 Jan 2014 04:54:59 -0000</pubDate><guid>https://sourceforge.netd63e5cc9dab3bea507242810163398db67981cd4</guid></item></channel></rss>