PDA

View Full Version : [JAVA] i parser XML in java


xsatellitex
17-03-2008, 16:39
Salve a tutti spero possiate aiutarmi.
questo codice mi è stato dato dal mio prof:
non c'e' bisogno che lo leggiate tutto... volevo solo sapere cos'e' quella classe Employee ? Da dove la prendo ? Come la creo ? grazie ;)

import java.io.IOException;

import java.util.ArrayList;

import java.util.Iterator;

import java.util.List;



import javax.xml.parsers.ParserConfigurationException;

import javax.xml.parsers.SAXParser;

import javax.xml.parsers.SAXParserFactory;



import org.xml.sax.Attributes;

import org.xml.sax.SAXException;



import org.xml.sax.helpers.DefaultHandler;



public class SAXParserExample extends DefaultHandler{



List myEmpls;



private String tempVal;



//to maintain context

private Employee tempEmp;





public SAXParserExample(){

myEmpls = new ArrayList();

}



public void runExample() {

parseDocument();

printData();

}



private void parseDocument() {



//get a factory

SAXParserFactory spf = SAXParserFactory.newInstance();

try {



//get a new instance of parser

SAXParser sp = spf.newSAXParser();



//parse the file and also register this class for call backs

sp.parse("employees.xml", this);



}catch(SAXException se) {

se.printStackTrace();

}catch(ParserConfigurationException pce) {

pce.printStackTrace();

}catch (IOException ie) {

ie.printStackTrace();

}

}



/**

* Iterate through the list and print

* the contents

*/

private void printData(){



System.out.println("No of Employees '" + myEmpls.size() + "'.");



Iterator it = myEmpls.iterator();

while(it.hasNext()) {

System.out.println(it.next().toString());

}

}





//Event Handlers

public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {

//reset

tempVal = "";

if(qName.equalsIgnoreCase("Employee")) {

//create a new instance of employee

tempEmp = new Employee();

tempEmp.setType(attributes.getValue("type"));

}

}





public void characters(char[] ch, int start, int length) throws SAXException {

tempVal = new String(ch,start,length);

}



public void endElement(String uri, String localName, String qName) throws SAXException {



if(qName.equalsIgnoreCase("Employee")) {

//add it to the list

myEmpls.add(tempEmp);



}else if (qName.equalsIgnoreCase("Name")) {

tempEmp.setName(tempVal);

}else if (qName.equalsIgnoreCase("Id")) {

tempEmp.setId(Integer.parseInt(tempVal));

}else if (qName.equalsIgnoreCase("Age")) {

tempEmp.setAge(Integer.parseInt(tempVal));

}



}



public static void main(String[] args){

SAXParserExample spe = new SAXParserExample();

spe.runExample();

}



}

andbin
17-03-2008, 16:59
Salve a tutti spero possiate aiutarmi.
questo codice mi è stato dato dal mio prof:
non c'e' bisogno che lo leggiate tutto... volevo solo sapere cos'e' quella classe Employee ? Da dove la prendo ? Come la creo ?Nessuno lo può sapere ... si presume che sia la classe che "modella" i dati di un dipendente presi dal documento XML.
Devi o fartela dare dal prof. o farti spiegare come deve essere fatta (quali campi ha ecc....) e quindi scriverla tu.

xsatellitex
17-03-2008, 17:18
capisco... grazie mille :)