⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qxmlsimplereader.3qt

📁 linux下GUI编程工具qt的在线连接帮助手册
💻 3QT
字号:
'\" t.TH QXmlSimpleReader 3qt "11 October 2001" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQXmlSimpleReader \- Implementation of a simple XML reader (parser).PP\fC#include <qxml.h>\fR.PPInherits QXmlReader..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQXmlSimpleReader\fR ()".br.ti -1c.BI "virtual \fB~QXmlSimpleReader\fR ()".br.ti -1c.BI "virtual bool \fBparse\fR ( const QXmlInputSource * input, bool incremental )".br.ti -1c.BI "virtual bool \fBparseContinue\fR ()".br.in -1c.SH DESCRIPTIONThe QXmlSimpleReader class provides an implementation of a simple XML reader (parser)..PPThis XML reader is sufficient for simple parsing tasks. The reader:.TPprovides a well-formed parser;.TPdoes not parse any external entities;.TPcan do namespace processing..PPDocuments are parsed with a call to parse()..PPSee the tiny SAX2 parser walkthrough..PPSee also XML..SH MEMBER FUNCTION DOCUMENTATION.SH "QXmlSimpleReader::QXmlSimpleReader ()"Constructs a simple XML reader with the following feature settings:.TP\fIhttp://xml.org/sax/features/namespaces\fR TRUE.TP\fIhttp://xml.org/sax/features/namespace-prefixes\fR FALSE.TP\fIhttp://trolltech.com/xml/features/report-whitespace-only-CharData\fR TRUE.TP\fIhttp://trolltech.com/xml/features/report-start-end-entity\fR FALSE.PPMore information about features can be found in the Qt SAX2 overview..PPSee also setFeature()..SH "QXmlSimpleReader::~QXmlSimpleReader ()\fC [virtual]\fR"Destroys the simple XML reader..SH "bool QXmlSimpleReader::parse ( const QXmlInputSource * input, bool incremental )\fC [virtual]\fR"Reads an XML document from \fIinput\fR and parses it. Returns FALSE if the parsing detects an error; otherwise returns TRUE..PPIf \fIincremental\fR is TRUE, the parser does not return FALSE when it reaches the end of the \fIinput\fR without reaching the end of the XML file. Instead it stores the state of the parser so that parsing can be continued at a later stage when more data is available. You can use the function parseContinue() to continue with parsing. This class stores a pointer to the input source \fIinput\fR and the parseContinue() tries to read from that input souce. This means you should not delete the input source \fIinput\fR until you've finished your calls to parseContinue(). If you call this function with \fIincremental\fR TRUE whilst an incremental parse is in progress a new parsing session will be started and the previous session lost..PPIf \fIincremental\fR is FALSE, this function behaves like the normal parse function, i.e. it returns FALSE when the end of input is reached without reaching the end of the XML file and the parsing can't be continued..PPSee also parseContinue() and QSocket..SH "bool QXmlSimpleReader::parseContinue ()\fC [virtual]\fR"Continues incremental parsing; this function reads the input from the QXmlInputSource that was specified with the last parse() command. To use this function, you \fImust\fR have called parse() with the incremental argument set to TRUE..PPReturns FALSE if a parsing error occurs; otherwise returns TRUE..PPIf the input source returns an empty string for the function QXmlInputSource::data(), then this means that the end of the XML file is reached; this is quite important, especially if you want to use the reader to parse more than one XML file..PPThe case that the end of the XML file is reached without having finished the parsing is not considered as an error -- you can continue parsing at a later stage by calling this function again when there is more data available to parse..PPThis function assumes that the end of the XML document is reached if the QXmlInputSource::next() function returns QXmlInputSource::EndOfDocument. If the parser has not finished parsing when it encounters this symbol, it is an error and FALSE is returned..PPSee also parse() and QXmlInputSource::next()..SH "SEE ALSO".BR http://doc.trolltech.com/qxmlsimplereader.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qxmlsimplereader.3qt) and the Qtversion (3.0.0).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -