jagannath
XML DOM error
1 Answer(s)      3 years and 4 months ago
Posted in : Java Beginners

import org.w3c.dom.*;
import javax.xml.parsers.*;
import java.io.*;

public class DOMCountElement{
public static void main(String[] args) {
try {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
System.out.print("Enter File name: ");
String xmlFile = bf.readLine();
File file = new File(xmlFile);
if (file.exists()){
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
// Create the builder and parse the file
Document doc = factory.newDocumentBuilder().parse(xmlFile);
System.out.print("Enter element name: ");
String element = bf.readLine();
NodeList nodes = doc.getElementsByTagName(element);
System.out.println("xml Document Contains " + nodes.getLength() + " elements.");
}
else{
System.out.print("File not found!");
}
}
catch (Exception ex) {
System.out.println(ex);
}
}
}

the above program "To Count XML Element" was copied from this website (roseindia.net) but im getting a error like this... "java.io.IOException: Server returned HTTP response code: 503 for URL: http://www.w3.org/TR/html4/strict.dtd" im using eclipse IDE.. please help me with this. Thank u
View Answers

February 9, 2010 at 2:59 PM


Hi Friend,

Here this code works fine.It seems that your code could not find the file that you have specified. Instead of input the file from command prompt check the code by specifying the file name in the code like:

String xmlFile = "C:\\data.xml";

If you got the error again,then send full error details.

Thanks









Related Pages:
XML DOM error - Java Beginners
XML DOM error  import org.w3c.dom.*; import javax.xml.parsers....("xml Document Contains " + nodes.getLength() + " elements."); } else...); } } } the above program "To Count XML Element" was copied from this website (roseindia.net
DOM
DOM  package name for Document class?   Hi Friend, The package is known as dom api. For more information, visit the following links: http://www.roseindia.net/xml/ http://www.roseindia.net/xml/dom/ Thanks
XML Error checker and locater (DOM)
XML Error checker and locater (DOM)   ... and locate (line and column number) an error in your XML document using the DOM APIs.  The XML document follows some rules to check its syntax. 
DOM - XML
DOM  Hi... I created an xml file through java by using DOM Now..I need to get the prompt for download when i clicked the button... I used downloadaction...for this But it didn't worked.. Its jus viewing the xml file
DOM - XML
DOM  Hello.... I'm creating an xml file from java using DOM... from the database values... and saving it in a file But the created xml file..."),rs.getString("email")); } System.out.println("Xml File Created
DOM to SAX and SAX to DOM - XML
Java DOM to SAX and SAX to DOM  Simple API for XML and Document Object Model
DOM to SAX and SAX to DOM - XML
DOM SAX Parser Java  What is the Difference between SAX and DOM parsers
javascript dom error-message
javascript dom error-message  javascript dom error-message
Java-XML-DOM - XML
Java-XML-DOM  Hi! I need some help. I have to make java program that loads an xml file and from it builds DOM(later i will have to work with it - like using xpath in java find some value and replace it...). Since i'm new to java
dom to xml string
dom to xml string  Hi, I am writing a program in java that reads... have save the dom document into xml file. How to convert dom to xml string... for converting DOM object into string data. Please check the thread dom to xml
Java DOM Tutorial
the  elements and its value using DOM APIs.  XML Error checker... and column number) an error in your XML document using the DOM APIs.  The XML.... The DOM is an interface that exposes an XML document as a tree structure
DOM paring problem
DOM paring problem  Hi My code always show arrayindexoutofbound here is my code i am using arraylist to display and DOM parser to retrieve XML value. I am searching the value by attributes equals 2. this error i am getting
DOM paring problem
DOM paring problem  Hi My code always show arrayindexoutofbound here is my code i am using arraylist to display and DOM parser to retrieve XML value. I am searching the value by attributes equals 2. this error i am getting
XML DOM Tutorial
XML DOM Tutorial       W3C provides a standard called DOM (Document Object Model) for HTML & XML documents. DOM is also used as an interface for accessing and manipulating HTML & XML
Dom in java
Create XML using DOM import java.io.*; import org.w3c.dom.*; import...Dom in java  Exception in thread "main" org.w3c.dom.DOMException: INVALIDCHARACTERERR: An invalid or illegal XML character is specified
XML load problem - XML
to : http://www.roseindia.net/xml/dom/ Thanks    New Document...XML load problem  I have load the xml document in javascript.getting error like ActiveXObject is undefined.Can you help me?  Hi friend
Read Complex XML using DOM/SAX Parser.
Read Complex XML using DOM/SAX Parser.  I have a XML file which is having two types of Items. I want to extract all details of a type only. My XML goes something like this <Movie> <Bollywood> <Actor> Shah Rukh
Question about parsing XML document with DOM in JAVA.
Question about parsing XML document with DOM in JAVA.  Hi, I need to parse a XML file witch has info about classes. So i have for each class to have... it with multiple for loops, one iside the other but it doesnt work. My XML is this below
java code to create xml document from DOM object
java code to create xml document from DOM object  Hey! After knowing the way we can create DOM objects and add elements to it-> then displaying it on the console ;is there a way I can output the same in xml document
readXML - XML
the path1,path2,.. from it.. i use the DOM parser and get error messages like...readXML  hiii i face problems in reading a xml file... u parse. Thanks'' Rajanikant   just check ur xml file it is wrong
Java dom from string
Java dom from string  Hi, How to create dom tree from string data? I am trying to search the example for java dom from string. Thanks   ...://www.roseindia.net"; String strData = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n
DOM
DOM  hello, What is DOM?   hii, DOM is stands for Document object Model. DOM is an interface-oriented Application Programming Interface. We can use it for navigation of the entire document
DOM API - Java Beginners
DOM API  How can i go through each and every node of an xml file Each and everyChild? my xml file is given below: 810 32 141 22
Getting Dom Tree Elements and their Corresponding XML Fragments
Getting Dom Tree Elements and their Corresponding XML Fragments... will learn to get the elements of a DOM tree and their corresponding XML... the DOM tree elements and their corresponding XML fragments are displayed
DOM API - Java Beginners
DOM API  How can i go through each and every node of an xml file Each and everyChild? my xml file is given below...); } } } ---------------------------------------------- Read for more information. http://www.roseindia.net/xml/dom
Java XML Parsing Using DOM
Java XML Parsing Using SAX To Parse XML document using SAX parser method you need to follow the following steps. Consider the following XML file Students.xml <?xml version="1.0" encoding="UTF-8"?> <
XML - XML
XML  How to run XML program?  Hi Friend, Please visit the following links: http://www.roseindia.net/xml/ http://www.roseindia.net/xml/dom/ Hope that it will be helpful for you. Thanks
java - XML
kumar  Hi friend, Step to validate a xml file against a DTD (Document Type Definition) using the DOM APIs. Here is the xml file "User.xml...java  how can i validate my xml file using java code plz send me de
Document Object Model(DOM)
Document Object Model(DOM)       The Document Object Model (DOM) is a an standard object model that represents HTML or XML and related formats. Document Object Model is platform
readXML - XML
readXML   hiii i face problems in reading a xml file.. pixvalue1path1 pixvalue2path2..i need the path1,path2,.. from it.. i use the DOM parser and get error messages like
DOM Parser Tutorial
DOM Parser Tutorial Introduction Dom stands for Document Object Model. It is a Java API(Application Programming Interface ) for XML Parsing. It is available in package org.w3c.dom. Dom is a cross-language API. It provides many
Error-
Error-   Hello, I would like to know about XSD file. I try to print XML file but I am getting error SAXException-- says Content is not allowed in prolog. Please help me
XML Parsers
the validity of XML documents are DTDs  and the Schemas. DOM: Document Object Model The XML Document Object Model (XML DOM) defines a standard way to access... for that language). The DOM presents an XML document as a tree-structure (a node tree
Create an Empty DOM Document
Create an Empty DOM Document       This Example shows how to create an empty DOM Document . JAXP (Java API for XML Processing) is an interface which provides parsing of xml
error
HelloWorld Deployment Error for module: HelloWorld: Error occurred during... [HelloWorld]. TargetNamespace.1 : Espace de noms "http://java.sun.com/xml/ns/j2ee...://java.sun.com/xml/ns/javaee'.. Please see server.log for more details. please help me
deployment error - XML
getting the following error after i deployed my war file on tomcat.I suspecting my... web.xml entries to support spring and site mesh?? here is the error on my console and my web.xml ......... -------------------------------------- SEVERE: Error
Creating Blank DOM Document
Creating Blank DOM Document       This tutorial shows you how to create blank DOM document. JAXP (Java API for XML Processing) is a Java interface that provides a standard approach
Creating DOM Child Elements
Creating DOM Child Elements       This lesson shows you how to create root and child elements in the DOM tree. We will first create a blank DOM document and add the root element
XML error message: The reference to entity
XML error message: The reference to entity   XML error message: The reference to entity "ai" must end with the ';' delimiter. Im getting this error when i gotta edit my blogger template Please advice manjunath
Example of getTagName() method in xml dom api.
the element. In this example, we create the Dom parser by create the instance of DocumentBuilder  using DocumentBuilderFactory . After parsing the xml file we
The Document Object Model (DOM) APIs
XML data. As a result, a DOM tree like that shown in the diagram... The Document Object Model (DOM) APIs       The DOM Packages        
Adding an Attribute in DOM Document
Adding an Attribute in DOM Document       This Example shows you how to adds an attribute in a DOM document. JAXP (Java API for XML Processing) is an interface which provides
Reading xml file using dom parser in java with out using getelementby tag name
Reading xml file using dom parser in java with out using getelementby tag name  Hi, How to read the xml file using java with dom parser, but without...-Beginners/8384-java-with-xml-parsing.html but it is not reading attribute
Creates a New DOM Parse Tree
():-allows direct access to the root of the DOM document. Xml code for the program... Creates a New DOM Parse Tree       This Example describes a method to create a new DOM tree .Methods
Creating XMl file - XML
Creating XMl file   I went on this page: http://www.roseindia.net/xml/dom/createblankdomdocument.shtml and it shows me how to create an XML file, however there is something I don't understand. I have to create an XML file
XML Validate DTD
XML Validate DTD        In this section, you will learn to validate a xml file against a  DTD (Document Type Definition)  using the DOM APIs. A DTD
Parsing The XML File using DOM parser in JSP
Parsing The XML File using DOM parser in JSP... the DOM (Document Object Model) parser, that is the platform independent... the processing are displayed on to the present page. DOM parser is not an ideal
Java Write To File Dom Document
Java Write To File Dom Document In this tutorial you will learn how to write to file dom document. Write to xml file you would be required to use the package javax.xml. This package provides the facility to create XML file easily
Example for getElementsByTagName() method in DOM Document.
Example for getElementsByTagName() in DOM Document In this section ,we... of the child in the xml document. The method getElementsByTagName... parse the XML file using the parse() method. After parsing the document, we get
Implementing the createTextNode() method in DOM API.
Implementing the createTextNode() method in DOM API In this illustration, we will discuss about the appending the value to the node in XML document... new DOM parsers and  DocumentBuilder is used in code given below

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.