Problem facing in SAX Parsing
I have facing the issue in SAX Parsing like i have got the xml and the xml structure is like below.
<?xml version="1.0" encoding="UTF-8" ?>
- <Customers>
- <Customer>
<CustName>M.T.C ALUPACK(MOHAMED ALTURK & CO)</CustName>
<CustId>06684209932</CustId>
<CountryCode>BH</CountryCode>
<BranchCode>06684</BranchCode>
<AccountNbrs />
</Customer>
- <Customer>
<CustName>AL HASSANAIN CO.WLL</CustName>
<CustId>06684210088</CustId>
<BranchCode>06684</BranchCode>
- <AccountNbrs>
<AccountNbr>0668421008800119BHD</AccountNbr>
<AccountNbr>0668421008800119USD</AccountNbr>
<AccountNbr>0668421008800216BHD</AccountNbr>
<AccountNbr>0668421008800119QAR</AccountNbr>
</AccountNbrs>
</Customer>
<Customer>
<CustName>M.T.C. ALUPACK (MOHAMED AL TURK &</CustName>
<CustId>06684209916</CustId>
<CountryCode>BH</CountryCode>
<BranchCode>06684</BranchCode>
- <AccountNbrs>
<AccountNbr>0668420991600115BHD</AccountNbr>
<AccountNbr>0668420991600115EUR</AccountNbr>
<AccountNbr>0668420991600115USD</AccountNbr>
</AccountNbrs>
</Customer>
- <Customer>
<CustName>AL ZAIN AUTO SUPPLIES ESTABLISHMENT</CustName>
<CustId>06684209577</CustId>
<BranchCode>06684</BranchCode>
- <AccountNbrs>
<AccountNbr>0668420957700159BHD</AccountNbr>
<AccountNbr>0668420957700159EUR</AccountNbr>
<AccountNbr>0668420957700159USD</AccountNbr>
</AccountNbrs>
</Customer>
<Customers>
you can find the above xml there is no CountryCode in the second record and 4th records.
if that CountryCode is not present then i need to skip the total Customer tag.
so we were using the sax parcing in our application. can you please let me know... how to handle this code in SAX Parcing.
View Answers
March 4, 2010 at 4:32 PM
Hi Friend,
First of all remove & sign from your xml file,it contradicts.And then try the following code:
import javax.xml.parsers.*;
import org.xml.sax.*;
import org.xml.sax.helpers.*;
import java.io.*;
import java.util.*;
public class XMLParser{
Date date=new Date();
public static void main(String[] args) throws IOException{
XMLParser detail = new XMLParser("C:/customers.xml");
}
public XMLParser(String str){
try{
File file = new File(str);
if (file.exists()){
SAXParserFactory parserFact = SAXParserFactory.newInstance();
SAXParser parser = parserFact.newSAXParser();
System.out.println("XML Data: ");
DefaultHandler dHandler = new DefaultHandler(){
boolean name;
boolean id;
boolean ccode;
boolean bcode;
boolean ano;
public void startElement(String uri, String localName,String element_name, Attributes attributes)throws SAXException{
if (element_name.equals("CustName")){
name = true;
}
if (element_name.equals("CustId")){
id = true;
}
if (element_name.equals("CountryCode")){
ccode = true;
}
if (element_name.equals("BranchCode")){
bcode = true;
}
if (element_name.equals("AccountNbr")){
ano = true;
}
}
public void characters(char[] ch, int start, int len) throws SAXException{
String str = new String (ch, start, len);
if (name){
System.out.println("Cust Name: "+str);
name = false;
}
if (id){
System.out.println("Cust ID: "+str);
id = false;
}
if (ccode){
System.out.println("Country Code: "+str);
ccode = false;
}
if (bcode){
System.out.println("Branch Code: "+str);
bcode = false;
}
if (ano){
System.out.println("AccountNbrs: "+str);
ano = false;
}
}
};
parser.parse(str, dHandler);
}
else{
System.out.println("File not found!");
}
}
catch (Exception e){
}
}
}
Thanks
Related Tutorials/Questions & Answers:
Problem facing in SAX Parsing - XMLProblem facing in
SAX Parsing I have
facing the issue in
SAX Parsing... tag.
so we were using the
sax parcing in our application. can you please let me know... how to handle this code in
SAX Parcing.
Hi Friend,
First
Problem facing in SAX Parsing - XMLProblem facing in
SAX Parsing I have
facing the issue in
SAX Parsing... then i need to skip the total Customer tag.
so we were using the
sax parcing in our application. can you please let me know... how to handle this code in
SAX Advertisements
parsing xml using saxparsing xml using sax how to get values if the root elements are same and their attributes are different
Truncating issue while parsing XML with SAX Parser.Truncating issue while
parsing XML with
SAX Parser. I am
Parsing one xml file and after
parsing I have to enter the data into the database using hibernate. The
problem is while
parsing some elements, its not getting the complete
XML Parsing Using Sax Parser in J2ME for serversideXML
Parsing Using
Sax Parser in J2ME for serverside Hai team,
i have doubt in
Parsing using
sax parser in serverside plz help me for xml
parsing in j2me using
sax parser on server side
thanks in advance...
regards
Selva
XML Parsing Using Sax Parser in J2MEXML
Parsing Using
Sax Parser in J2ME Hai team,
I hope you, You should help me, I have trouble in Xml
parsing...
I have decoded value, what... to do xml
parsing help me for that...
Regards
Alagu
facing problem plz help me out - FrameworkFacing problem plz help me out hi i am new to servlet i deployed... the web.xml file too parallel to the classes folder now i am
facing this problem.plz tell me what to do... error:The requested resource (Servlet servlet
parsing word xml file using SAX parser - XMLparsing word xml file using
SAX parser i am
parsing word 2003's XML file using SAX.here my question is,i want to write some tag elements which are between in other tag to a file.
For ex
facing problem while retrive value from Post textareafacing problem while retrive value from Post textarea Hi this is subha. I face a small
problem while retriving value of the textbox in the java script.I use struts framework and this is my code for post textarea.
<tr>
Java XML Parsing Using SAXJava XML
Parsing Using
SAX
To Parse XML document using
SAX parser method you...;/Students>
1. At first Create the
SAX Parser as
// getting SAXParserFactory... = saxParserFactory.newSAXParser();
//
Parsing XML Document by calling parse
Facing - AjaxFacing Hello All, i m using ajax in my application i m fetching data from db using ajax method and returning response in xml format.
But when... the
problem.
once check u r xml response format.
xml response should be like
XML parsing to Mysql databaseXML
parsing to Mysql database Can someone please post the code for
parsing an XML file into Mysql database using
SAX parsing XML file to get java object - XMLparsing XML file to get java object Hello,
I'm
facing a
problem in
parsing XML file to get the java object.
I've tried to retrieve data from XML file using
SAX parser.
my XML file structure is the following
Maven Repository/Dependency: sax | saxMaven Repository/Dependency of Group ID
sax and Artifact ID
sax. Latest version of
sax:
sax dependencies.
#
Version
Release Date
You can read more at:
Maven
Tutorials
What
sax parser for xmlsax parser for xml
sax parser code that works with any XML i.e independent of any XML to extract data from XML
Maven Dependency sax >> 2.0.1You should include the dependency code given in this page to add Maven Dependency of
sax >>
sax version2.0.1 in your project
The Simple API for XML (SAX) APIs
The Simple API for XML (
SAX) APIs
The
SAX Packages: The
SAX parser is defined in the following...
Description
org.xml.sax
Defines the
SAX interfaces
SAX Parser exceptionSAX Parser exception I am trying to validate one xml, its giving me exception as : cvc-elt.5.2.2.1:The value '00' of element 'abcd' does not match the fixed {value constraint} '0'.
Please help me asap
XML parsing using Java - XML" RenewalRate1="0.03100".
I'm
facing problem switching between tables. Like...XML
parsing using Java I'm trying to parse a big XML file in JAVA.
The goal is like i will take console input from user until "Coverage
SAX Parser
SAX Parser
The Simple API for XML (
SAX) is a serial
access parser API for XML. It is used... executes, the
SAX parser recognizes and
responds to each XML structure taking
ModuleNotFoundError: No module named 'parsing'ModuleNotFoundError: No module named '
parsing' Hi,
My Python... '
parsing'
How to remove the ModuleNotFoundError: No module named '
parsing... to install padas library.
You can install
parsing python with following command
SAX Parser for huge XML fileSAX Parser for huge XML file Hi....
if the XML file is small and repetitive then this will have meaning..
import javax.xml.parsers.... using
sax parser... i wanna use direct file path... not by defining each and every
Parsing string in objective cParsing string in objective c Hi, How can i parse a string in Objective c??
Thanks.
Parsing string in objective c
This example will also help you to separate the strings separated by one component
Parsing date in JavaParsing date in Java How can i parse the date in Java in a simple format..?
SimpleDateFormat parserSDF=new SimpleDateFormat("EEE MMM d HH:mm:ss zzz yyyy
Parsing into date objectParsing into date object Here is my code:
String de = (String) session.getAttribute("licvalid");
DateFormat df = new SimpleDateFormat("yyyy/MM/dd.... But, it is showing error at the line where i performed
parsing operation. Please help me
Parsing into date objectParsing into date object Here is my code:
String de = (String) session.getAttribute("licvalid");
DateFormat df = new SimpleDateFormat("yyyy/MM/dd.... But, it is showing error at the line where i performed
parsing operation. Please help me
problem in programming - JSP-Servletproblem in programming Hi!
I am new with jsp. I am
facing a
problem in programming to calculate the time interval between login time and logout time of user
java parsing of data typesjava
parsing of data types Why its not works?
char ch; String s=*
ch=Character.parseChar(s)
program:
char op;
DataInputStream dis=new DataInputStream(System.in);
System.out.print("Enter operator (+,-,*,/,%): ");
op
xml document parsing xml document
parsing Hi Guys,
Xml document has been inserted into the database,how do i parse the xml document stored in database,so that xml document can be retrieved on to JSP file using jdbc/odbc connection.
Please help me
Html Parsing Extracting ContentHtml
Parsing Extracting Content Hello
i need to parse html and search for a string and get its attributes.For example 'xxx' is my search string. i search html page and find xxx css attributes.Java,php,javascript is okey
thank
xml parsing - XML±
how can i do this?
Hi friend,
Parsing The XML File using DOM parser in JSP visit to :
http://www.roseindia.net/jsp/
parsing-xml.shtml
Problem with cookiesProblem with cookies Hello All,
i need jsp code for RememberMe module of login.
i am
facing problem with cookies. so please if any one could guide me please help and provide mme the exact code.
Please visit
Parsing a pharase - Java BeginnersParsing a pharase How do parse a sentence or pharse from a given passage??
Thank you in advance, plz help. it can be done in many ways some of them are
String.split methods
StringTokenizer and StreamTokenizer