public interface XmlWriter extends RowSetWriter
SyncProvider
抽象类。
SyncProvider
提供XML数据写入器功能(例如输出XML流功能)的实现可以实现该接口,以将标准XmlWriter
对象提供给WebRowSet
实现。
编写WebRowSet
对象包括将行集的数据,元数据和属性全部打印到相应的XML标签中。
void writeXML(WebRowSet caller, Writer writer) throws SQLException
WebRowSet
对象写入指定的java.io.Writer
输出流作为XML文档。
此文档包括行集的数据,元数据和属性以及相应的XML标记。
caller
参数必须是WebRowSet
对象,其XmlWriter
字段包含对此XmlWriter
对象的引用。
caller
-
WebRowSet
实例,这个
XmlWriter
对象是作者
writer
- 用作
caller
作为XML文档的输出流的
java.io.Writer
对象
SQLException
- if a database access error occurs or this
XmlWriter
object is not the writer for the given
WebRowSet
object
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.