QXmlSerializerclass is an implementation ofQAbstractXmlReceiverfor transforming XQuery output into unformatted XML. 更多 …
继承者: QXmlFormatter
def
codec
()
def
outputDevice
()
def
setCodec
(codec)
QXmlSerializertranslates anXQuery sequence, usually the output of anQXmlQuery, into XML. Consider the example:QXmlQuery query; query.setQuery("doc('index.html')/html/body/p[1]"); QXmlSerializer serializer(query, myOutputDevice); query.evaluateTo(&serializer);First it constructs a
querythat gets the first paragraph from documentindex.html. Then it constructs an instance of this class with thequeryandmyOutputDevice. Finally, itevaluatesthequery, producing an ordered sequence of calls to the serializer’s callback functions. The sequence of callbacks transforms the query output to XML and writes it tomyOutputDevice.
QXmlSerializerwill:
Declare namespaces when needed,
Use appropriate escaping, when characters can’t be represented in the XML,
Handle line endings appropriately,
Report errors, when it can’t serialize the content, e.g., when asked to serialize an attribute that is a top-level node, or when more than one top-level element is encountered.
If an error occurs during serialization, result is undefined unless the serializer is driven through a call to
evaluateTo().If the generated XML should be indented and formatted for reading, use
QXmlFormatter.
QXmlSerializer
(
query
,
outputDevice
)
¶
- param query
- param outputDevice
QIODevice
Constructs a serializer that uses the name pool and message handler in
query
, and writes the output to
outputDevice
.
outputDevice
must be a valid, non-null device that is open in write mode, otherwise behavior is undefined.
outputDevice
must not be opened with
文本
because it will cause the output to be incorrect. This class will ensure line endings are serialized as according with the XML specification.
QXmlSerializer
未拥有所有权对于
outputDevice
.
PySide2.QtXmlPatterns.QXmlSerializer.
State
¶
PySide2.QtXmlPatterns.QXmlSerializer.
codec
(
)
¶
QTextCodec
Returns the codec being used by the serializer for encoding its XML output.
另请参阅
PySide2.QtXmlPatterns.QXmlSerializer.
outputDevice
(
)
¶
QIODevice
Returns a pointer to the output device. There is no corresponding function to set the output device, because the output device must be passed to the constructor. The serializer does not take ownership of its IO device.
PySide2.QtXmlPatterns.QXmlSerializer.
setCodec
(
codec
)
¶
codec
–
QTextCodec
Sets the codec the serializer will use for encoding its XML output. The output codec is set to
outputCodec
. By default, the output codec is set to the one for
UTF-8
. The serializer does not take ownership of the codec.
另请参阅