A tiny SAX2 parser
This example presents a small SAX2 reader that outputs the names of all elements in an XML document on the command line. The element names are indented corresponding to their nesting This example is thoroughly explained in a walkthrough.
Header file:
/**************************************************************************** ** $Id: qt/structureparser.h 3.3.7 edited Aug 31 2005 $ ** ** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #ifndef STRUCTUREPARSER_H #define STRUCTUREPARSER_H #include <qxml.h> class QString; class StructureParser : public QXmlDefaultHandler { public: bool startDocument(); bool startElement( const QString&, const QString&, const QString& , const QXmlAttributes& ); bool endElement( const QString&, const QString&, const QString& ); private: QString indent; }; #endif
Implementation:
/**************************************************************************** ** $Id: qt/structureparser.cpp 3.3.7 edited Aug 31 2005 $ ** ** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include "structureparser.h" #include <stdio.h> #include <qstring.h>
Main:
/**************************************************************************** ** $Id: qt/tagreader.cpp 3.3.7 edited Feb 20 2006 $ ** ** Copyright (C) 1992-2005 Trolltech AS. All rights reserved. ** ** This file is part of an example program for Qt. This example ** program may be used, distributed and modified without limitation. ** *****************************************************************************/ #include "structureparser.h" #include <qfile.h> #include <qxml.h> #include <qwindowdefs.h> int main( int argc, char **argv ) { if ( argc < 2 ) { fprintf( stderr, "Usage: %s <xmlfile> [<xmlfile> ...]\n", argv[0] ); return 1; } StructureParser handler; QXmlSimpleReader reader; See also Qt XML Examples. |
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 3.3 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com