- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.restlet.ext.xml.XmlWriter.startElement()
方法的一些代码示例,展示了XmlWriter.startElement()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlWriter.startElement()
方法的具体详情如下:
包路径:org.restlet.ext.xml.XmlWriter
类名称:XmlWriter
方法名:startElement
[英]Start a new element without a qname, attributes or a Namespace URI.
This method will provide an empty string for the Namespace URI, and empty string for the qualified name, and a default empty attribute list. It invokes #startElement(String, String, String, Attributes)} directly.
[中]启动一个没有qname、属性或名称空间URI的新元素。
此方法将为命名空间URI提供空字符串,为限定名称提供空字符串,并提供默认的空属性列表。它直接调用#startElement(String,String,String,Attributes)}。
代码示例来源:origin: org.restlet/org.restlet.ext.xml
/**
* Start a new element without a qname, attributes or a Namespace URI.
*
* <p>
* This method will provide an empty string for the Namespace URI, and empty
* string for the qualified name, and a default empty attribute list. It
* invokes #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String localName) throws SAXException {
startElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.xml
/**
* Start a new element without a qname, attributes or a Namespace URI.
*
* <p>
* This method will provide an empty string for the Namespace URI, and empty
* string for the qualified name, and a default empty attribute list. It
* invokes #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String localName) throws SAXException {
startElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.xml
/**
* Start a new element without a qname, attributes or a Namespace URI.
*
* <p>
* This method will provide an empty string for the Namespace URI, and empty
* string for the qualified name, and a default empty attribute list. It
* invokes #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String localName) throws SAXException {
startElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet/org.restlet.ext.xml
/**
* Start a new element without a qname or attributes.
*
* <p>
* This method will provide a default empty attribute list and an empty
* string for the qualified name. It invokes
* {@link #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param uri
* The element's Namespace URI.
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String uri, String localName) throws SAXException {
startElement(uri, localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.xml
/**
* Start a new element without a qname or attributes.
*
* <p>
* This method will provide a default empty attribute list and an empty
* string for the qualified name. It invokes
* {@link #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param uri
* The element's Namespace URI.
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String uri, String localName) throws SAXException {
startElement(uri, localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.xml
/**
* Start a new element without a qname or attributes.
*
* <p>
* This method will provide a default empty attribute list and an empty
* string for the qualified name. It invokes
* {@link #startElement(String, String, String, Attributes)} directly.
* </p>
*
* @param uri
* The element's Namespace URI.
* @param localName
* The element's local name.
* @exception org.xml.sax.SAXException
* If there is an error writing the start tag, or if a
* restlet further down the filter chain raises an exception.
* @see #startElement(String, String, String, Attributes)
*/
public void startElement(String uri, String localName) throws SAXException {
startElement(uri, localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @param namespace
* The element namespace URI.
* @param localName
* The local name of the element.
* @throws SAXException
*/
public static void writeElement(XmlWriter writer, Date date,
String namespace, String localName) throws SAXException {
if (date != null) {
writer.startElement(namespace, localName);
writer.characters(DateUtils.format(date,
DateUtils.FORMAT_RFC_3339.get(0)));
writer.endElement(namespace, localName);
} else {
writer.emptyElement(namespace, localName);
}
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @param namespace
* The element namespace URI.
* @param localName
* The local name of the element.
* @throws SAXException
*/
public static void writeElement(XmlWriter writer, Date date,
String namespace, String localName) throws SAXException {
if (date != null) {
writer.startElement(namespace, localName);
writer.characters(DateUtils.format(date, DateUtils.FORMAT_RFC_3339
.get(0)));
writer.endElement(namespace, localName);
} else {
writer.emptyElement(namespace, localName);
}
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
/**
* Writes the representation to a XML writer.
*
* @param writer
* The XML writer to write to.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
writer.startElement(APP_NAMESPACE, "categories");
for (final Category entry : getEntries()) {
entry.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "categories");
writer.endDocument();
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.wadl
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
final AttributesImpl attributes = new AttributesImpl();
if ((getValue() != null) && !getValue().equals("")) {
attributes.addAttribute("", "id", null, "xs:string", getValue());
}
if (getDocumentations().isEmpty()) {
writer.emptyElement(APP_NAMESPACE, "option", null, attributes);
} else {
writer.startElement(APP_NAMESPACE, "option", null, attributes);
for (final DocumentationInfo documentationInfo : getDocumentations()) {
documentationInfo.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "option");
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.atom
/**
* Writes the representation to a XML writer.
*
* @param writer
* The XML writer to write to.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
writer.startElement(APP_NAMESPACE, "categories");
for (final Category entry : getEntries()) {
entry.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "categories");
writer.endDocument();
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.wadl
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
if (getDocumentations().isEmpty() && getIncludes().isEmpty()) {
writer.emptyElement(APP_NAMESPACE, "grammars");
} else {
writer.startElement(APP_NAMESPACE, "grammars");
for (final DocumentationInfo documentationInfo : getDocumentations()) {
documentationInfo.writeElement(writer);
}
for (final IncludeInfo includeInfo : getIncludes()) {
includeInfo.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "grammars");
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.wadl
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
final AttributesImpl attributes = new AttributesImpl();
if ((getTargetRef() != null) && (getTargetRef().toString() != null)) {
attributes.addAttribute("", "href", null, "xs:anyURI",
getTargetRef().toString());
}
if (getDocumentations().isEmpty()) {
writer.emptyElement(APP_NAMESPACE, "include", null, attributes);
} else {
writer.startElement(APP_NAMESPACE, "include", null, attributes);
for (final DocumentationInfo documentationInfo : getDocumentations()) {
documentationInfo.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "include");
}
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.wadl
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
if (getDocumentations().isEmpty() && getParameters().isEmpty()
&& getRepresentations().isEmpty()) {
writer.emptyElement(APP_NAMESPACE, "request");
} else {
writer.startElement(APP_NAMESPACE, "request");
for (final DocumentationInfo documentationInfo : getDocumentations()) {
documentationInfo.writeElement(writer);
}
for (final ParameterInfo parameterInfo : getParameters()) {
parameterInfo.writeElement(writer);
}
for (final RepresentationInfo representationInfo : getRepresentations()) {
representationInfo.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "request");
}
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
/**
* Writes the representation to a XML writer.
*
* @param writer
* The XML writer to write to.
* @throws IOException
*/
@Override
public void write(XmlWriter writer) throws IOException {
try {
writer.forceNSDecl(APP_NAMESPACE, "");
writer.forceNSDecl(ATOM_NAMESPACE, "atom");
writer.setDataFormat(true);
writer.setIndentStep(3);
writer.startDocument();
writer.startElement(APP_NAMESPACE, "service");
for (final Workspace workspace : getWorkspaces()) {
workspace.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "service");
writer.endDocument();
} catch (SAXException se) {
throw new IOException("Couldn't write the service representation: "
+ se.getMessage());
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
writer.startElement(APP_NAMESPACE, "workspace");
if (getTitle() != null) {
writer.dataElement(ATOM_NAMESPACE, "title", getTitle());
}
for (final Collection collection : getCollections()) {
collection.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "workspace");
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @throws SAXException
*/
public void writeElement(XmlWriter writer) throws SAXException {
writer.startElement(APP_NAMESPACE, "workspace");
if (getTitle() != null) {
writer.dataElement(ATOM_NAMESPACE, "title", getTitle());
}
for (final Collection collection : getCollections()) {
collection.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "workspace");
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.atom
/**
* Writes the representation to a XML writer.
*
* @param writer
* The XML writer to write to.
* @throws IOException
*/
@Override
public void write(XmlWriter writer) throws IOException {
try {
writer.forceNSDecl(APP_NAMESPACE, "");
writer.forceNSDecl(ATOM_NAMESPACE, "atom");
writer.setDataFormat(true);
writer.setIndentStep(3);
writer.startDocument();
writer.startElement(APP_NAMESPACE, "service");
for (final Workspace workspace : getWorkspaces()) {
workspace.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "service");
writer.endDocument();
} catch (SAXException se) {
throw new IOException("Couldn't write the service representation: "
+ se.getMessage());
}
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @param localName
* The local name of the element.
* @throws SAXException
*/
public void writeElement(XmlWriter writer, String localName)
throws SAXException {
writer.startElement(ATOM_NAMESPACE, localName);
if (getEmail() != null) {
writer.dataElement(ATOM_NAMESPACE, "email", getEmail());
}
if (getName() != null) {
writer.dataElement(ATOM_NAMESPACE, "name", getName());
}
if ((getUri() != null) && (getUri().toString() != null)) {
writer.dataElement(ATOM_NAMESPACE, "uri", getUri().toString());
}
writer.endElement(ATOM_NAMESPACE, localName);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.atom
/**
* Writes the current object as an XML element using the given SAX writer.
*
* @param writer
* The SAX writer.
* @param localName
* The local name of the element.
* @throws SAXException
*/
public void writeElement(XmlWriter writer, String localName)
throws SAXException {
writer.startElement(ATOM_NAMESPACE, localName);
if (getEmail() != null) {
writer.dataElement(ATOM_NAMESPACE, "email", getEmail());
}
if (getName() != null) {
writer.dataElement(ATOM_NAMESPACE, "name", getName());
}
if ((getUri() != null) && (getUri().toString() != null)) {
writer.dataElement(ATOM_NAMESPACE, "uri", getUri().toString());
}
writer.endElement(ATOM_NAMESPACE, localName);
}
我想知道 XmlWriter.WriteStartDocument() 背后的原因和 XmlWriter.WriteEndDocument() . 在我的场景中,我正在创建一个包含一些数据的 XML
我想使用 XMLWriter 在 XML 文档之上生成一个嵌套的实体 DTD 声明。我从不带 XMLWriter 的字符串构建代码开始,它也说明了所需的输出: \n"; $sXML .= "%nest
我正在使用 XmlWriter,我想知道是否有人曾尝试编写带有属性的 xml 元素字符串(叶节点),以便输出看起来像 999 代替 999 最佳答案 您可以使用 WriteString .
我无法理解 XmlWriter 在 C# 中的工作方式。假设以下代码在某处使用过。 StringBuilder builder = new StringBuilder(); XmlWriterSett
我正在使用 XmlWriter 并且正在努力创建以下 XML 标记。 我有以下内容: XmlWriterSettings settings = new XmlWriterSettings(); se
我正在尝试生成符合这种格式的 XML 数据: 由于匿名原因,它显然缺少很多标签。 我正在使用 XmlWriter。 我设法用不同的 WriteStartElement() 和 Write
目前我正在使用 XmlWriter,想问一下如何在现有的 XML 文件中写入,例如: a.xml Test3 100 加入 ,例如 Test1 的位置没有任何作用,但最好写在
我正在使用 XmlWriter 构建一些 xml,使用有效的 xml 文件作为我的模板。在文件中,我有这一行: 所以,我在 C# 中做了这个: writer.WriteStartElement("ds
我有一个问题。我编写了一个程序,将大量数据转换为 VML-GML 格式。问题是我需要使用 XmlWriter... 现在我的方法有问题: private void StartDocument() {
下面是代码。我的问题是,如果我想创建此文件,然后稍后使用 XmlWriter 重新打开它并向当前文件添加更多内容,该怎么做?喜欢使用 XmlWriter 进入并编辑此 xml using System
我在 msdn 文档中找到了异步使用 XmlWriter 的示例 http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx a
我正在使用 XMLWriter http://www.php.net/manual/en/book.xmlwriter.php让我的网络客户端创建一个 XML 文件。一开始必须有一个具有很多属性的元素
我有一个 WCF 服务需要返回一个 XML 字符串。但似乎作者只想建立一个文件,而不是一个字符串。我试过: string nextXMLstring = ""; using (XmlWriter wr
我正在尝试生成此文档类型字符串: 这是我一直在尝试的: $writer.WriteDocType("games", $null , "transform.dtd", $null ) 我不完全确定如何
我试图将我的应用程序中的一些元素保存在 xml 文件中,但是当我开始使用以下代码开发它时: public static void WriteInFile(string savefilepath)
我有以下代码: MemoryStream ms = new MemoryStream(); XmlWriter w = XmlWriter.Create(ms); w.Writ
本文整理了Java中org.pageseeder.xmlwriter.XMLStringWriter类的一些代码示例,展示了XMLStringWriter类的具体用法。这些代码示例主要来源于Githu
System.Xml.XmlWriter的一个实例正在写入底层 Stream 吗?(不管 XmlWriter 的具体实现是什么) 那么为什么程序员没有方法可以从 XmlWriter 中检索 Strea
我将如何使用 XMlWriter 类创建这个字符串?我不断收到错误。 这是我尝试创建的 XML 字符串: 这是我试图用它生成的代码: using (XmlWriter writer = XmlWri
我在 XMLWriter 没有关闭时遇到了一些麻烦。我可以成功写入一次 XML 文件,但是如果我尝试再次写入(覆盖),则会出现异常: “该进程无法访问文件 'somefile.xml',因为它正被另一
我是一名优秀的程序员,十分优秀!