Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

XML HTML Info Example

The XML HTML Info example provides a simple command line utility that scans the current directory for HTML files and prints statistics about them to standard out.

The files are parsed using a QXmlStreamReader object. If the file does not contain a well-formed XML document, a description of the error is printed to the standard error console.

Basic Operation

The main function of the example uses QDir to access files in the current directory that match either "*.htm" or "*.html". For each file found, the parseHtmlFile() function is called.

Reading XML is handled by an instance of the QXmlStreamReader class, which operates on the input file object:

     QXmlStreamReader reader(&file);

The work of parsing and the XML and extracting statistics is done in a while loop, and is driven by input from the reader:

     int paragraphCount = 0;
     QStringList links;
     QString title;
     while (!reader.atEnd()) {
         reader.readNext();
         if (reader.isStartElement()) {
             if (reader.name() == "title")
                 title = reader.readElementText();
             else if(reader.name() == "a")
                 links.append(reader.attributes().value("href").toString());
             else if(reader.name() == "p")
                 ++paragraphCount;
         }
     }

If more input is available, the next token from the input file is read and parsed. The program then looks for the specific element types, "title", "a", and "p", and stores information about them.

When there is no more input, the loop terminates. If an error occurred, information is written to the standard out file via a stream, and the example exits:

     if (reader.hasError()) {
         out << "  The HTML file isn't well-formed: " << reader.errorString()
             << endl << endl << endl;
         return;
     }

If no error occurred, the example prints some statistics from the data gathered in the loop, and then exits.

Files:

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 5.0-snapshot
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 !
 
 
 
 
Partenaires

Hébergement Web