Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.io.File;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

import org.w3c.dom.Document;
import org.w3c.dom.Element;

public class Main {
    public static Document addXMLItems(File xmlfile, String tag) throws Exception {
        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = factory.newDocumentBuilder();
        Document doc;
        if (xmlfile.length() == 0) {
            doc = builder.newDocument();
            Element rootElement = doc.createElement(tag + "s");
            doc.appendChild(rootElement);
        } else {
            doc = builder.parse(xmlfile);
        }
        return doc;
    }
}