1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
| package fr.guigui.test;
import java.util.LinkedList;
import java.util.List;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
public class QuestionnaireHandler extends DefaultHandler{
//résultats de notre parsing
private List<Question> questionnaire;
private Question question;
private Reponse reponse;
//flags nous indiquant la position du parseur
private boolean inQuestionnaire, inQuestion, inReponse;
//buffer nous permettant de récupérer les données
private StringBuffer buffer;
// simple constructeur
public QuestionnaireHandler(){
super();
}
//détection d'ouverture de balise
public void startElement(String uri, String localName,
String qName, Attributes attributes) throws SAXException{
if(qName.equals("questionnaire")){
questionnaire = new LinkedList<Question>();
inQuestionnaire = true;
}else if(qName.equals("question")){
question = new Question();
try{
int numeroQuestion = Integer.parseInt(attributes.getValue("numero"));
question.setNumeroQuestion(numeroQuestion);
}catch(Exception e){
//erreur, le contenu de id n'est pas un entier
throw new SAXException(e);
}
inQuestion = true;
}else {
buffer = new StringBuffer();
if(qName.equals("reponse")){
reponse = new Reponse();
try{
int numeroReponse = Integer.parseInt(attributes.getValue("numQ"));
reponse.setIdReponse(numeroReponse);
}catch(Exception e){
}
inReponse = true;
}else{
//erreur, on peut lever une exception
throw new SAXException("Balise "+qName+" inconnue.");
}
}
}
//détection fin de balise
public void endElement(String uri, String localName, String qName)
throws SAXException{
if(qName.equals("questionnaire")){
inQuestionnaire = false;
}else if(qName.equals("question")){
questionnaire.add(question);
question = null;
inQuestion = false;
}else if(qName.equals("reponse")){
question.setQuestion(buffer.toString()); //setNom(buffer.toString());
buffer = null;
inReponse = false;
}else{
//erreur, on peut lever une exception
throw new SAXException("Balise "+qName+" inconnue.");
}
}
//détection de caractères
public void characters(char[] ch,int start, int length)
throws SAXException{
String lecture = new String(ch,start,length);
if(buffer != null) buffer.append(lecture);
}
//début du parsing
public void startDocument() throws SAXException {
System.out.println("Début du parsing");
}
//fin du parsing
public void endDocument() throws SAXException {
System.out.println("Fin du parsing");
System.out.println("Resultats du parsing");
for(Question q : questionnaire){
System.out.println(q);
}
}
} |
Partager