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.Node;
import org.w3c.dom.NodeList;

public class Main {
    private static String nodeString = null;
    private static String path = System.getProperty("user.dir") + "/src/org/design/pattern/";

    @SuppressWarnings("finally")
    public static String getType(String relativePath, String nodeName) {
        try {
            DocumentBuilderFactory dFactory = DocumentBuilderFactory.newInstance();
            DocumentBuilder builder = dFactory.newDocumentBuilder();
            Document doc;
            doc = builder.parse(new File(path + relativePath));

            NodeList nl = doc.getElementsByTagName(nodeName);
            Node classNode = nl.item(0).getFirstChild();
            nodeString = classNode.getNodeValue().trim();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return nodeString;
        }
    }
}