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
| package ....;
import org.xml.sax.*;
import org.xml.sax.helpers.*;
import javax.xml.parsers.*;
import java.io.*;
import java.awt.List;
public class URLHandler {
//résultats de notre parsing
private List<recupURL> urls = new ArrayList<recupURL>();
private recupURL url;
//flags nous indiquant la position du parseur
private boolean intd, invalign1, invalign2, inhref,intd2;
//buffer nous permettant de récupérer les données
private StringBuffer buffer;
// simple constructeur
public URLHandler(){
super();
}
//détection d'ouverture de balise
public void startElement(String uri, String localName,
String qName, Attributes attributes) throws SAXException{
if(qName.equals("td")){
urls= new LinkedList<recupURL>();
intd = true;
try{
int compteur = Integer.parseInt(attributes.getValue("valign"));
url.setId(compteur);
}catch(Exception e){
//erreur, le contenu de id n'est pas un entier
throw new SAXException(e);
}
}
if(qName.equals("td") && (intd==true)){
intd2 = true;
}
else if(qName.equals("a") && (intd2==true)){
url = new recupURL();
inhref = true;
buffer = new StringBuffer();
}{
//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("td")){
intd = false;
}if(qName.equals("td") && (intd==false)){
intd2 = false;
}
else if(qName.equals("a")){
urls.add(url);
url = null;
url.setNom(buffer.toString());
buffer = null;
inhref = 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(recupURL u: urls){
System.out.println(u);
}
}
} |
Partager