GetNameAsAttr.java Source code

Java tutorial

Introduction

Here is the source code for GetNameAsAttr.java

Source

import java.io.FileReader;

import javax.xml.xpath.XPath;
import javax.xml.xpath.XPathConstants;
import javax.xml.xpath.XPathFactory;

import org.w3c.dom.Attr;
import org.xml.sax.InputSource;

public class GetNameAsAttr {

    public static void main(String[] args) throws Exception {
        XPathFactory factory = XPathFactory.newInstance();
        XPath xPath = factory.newXPath();

        Attr result = (Attr) xPath.evaluate("/schedule/@name", new InputSource(new FileReader("tds.xml")),
                XPathConstants.NODE);
        System.out.println(result.getValue());

        result.setValue("The Colbert Report");

    }
}