A voir également:
- Xml parsing error
- Xml download - Télécharger - Édition & Programmation
- Office xml handler - Télécharger - Traitement de texte
- Cmos checksum error ✓ - Forum Carte-mère/mémoire
- Error 0x80070643 - Accueil - Windows
- Driveimage xml - Télécharger - Sauvegarde
1 réponse
Nabla's
Messages postés
18203
Date d'inscription
mercredi 4 juin 2008
Statut
Contributeur
Dernière intervention
28 avril 2014
3 193
5 juin 2008 à 12:43
5 juin 2008 à 12:43
sans le code, perdonen ne pourra rien faire
5 juin 2008 à 12:46
voici le code:
package newpackage;
import Package.BooksLibrary;
import java.io.*;
import org.xml.sax.*;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.SAXParser;
public class core {
protected static final String XML_FILE_NAME = "C://hh.xml";
public static void main(String argv []) {
SAXParserFactory factory = SAXParserFactory.newInstance();
try {
// Parse the input
SAXParser saxParser = factory.newSAXParser();
saxParser.parse( new File(XML_FILE_NAME), new BooksLibrary() );
} catch (Throwable t) {
t.printStackTrace ();
}
System.exit (0);
}
}
5 juin 2008 à 12:48