- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.restlet.ext.xml.XmlWriter.emptyElement()
方法的一些代码示例,展示了XmlWriter.emptyElement()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XmlWriter.emptyElement()
方法的具体详情如下:
包路径:org.restlet.ext.xml.XmlWriter
类名称:XmlWriter
方法名:emptyElement
[英]Add an empty element without a Namespace URI, qname or attributes.
This method will supply an empty string for the qname, and empty string for the Namespace URI, and an empty attribute list. It invokes #emptyElement(String,String,String,Attributes) directly.
[中]添加一个没有名称空间URI、qname或属性的空元素。
此方法将为qname提供空字符串,为命名空间URI提供空字符串,并提供空属性列表。它直接调用#emptyElement(字符串、字符串、字符串、属性)。
代码示例来源:origin: org.restlet.android/org.restlet.ext.xml
/**
* Add an empty element without a Namespace URI, qname or attributes.
*
* <p>
* This method will supply an empty string for the qname, and empty string
* for the Namespace URI, and an empty attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String localName) throws SAXException {
emptyElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.android/org.restlet.ext.xml
/**
* Add an empty element without a qname or attributes.
*
* <p>
* This method will supply an empty string for the qname and an empty
* attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String uri, String localName) throws SAXException {
emptyElement(uri, localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.xml
/**
* Add an empty element without a Namespace URI, qname or attributes.
*
* <p>
* This method will supply an empty string for the qname, and empty string
* for the Namespace URI, and an empty attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String localName) throws SAXException {
emptyElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet/org.restlet.ext.xml
/**
* Add an empty element without a Namespace URI, qname or attributes.
*
* <p>
* This method will supply an empty string for the qname, and empty string
* for the Namespace URI, and an empty attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String localName) throws SAXException {
emptyElement("", localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.xml
/**
* Add an empty element without a qname or attributes.
*
* <p>
* This method will supply an empty string for the qname and an empty
* attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String uri, String localName) throws SAXException {
emptyElement(uri, localName, "", this.EMPTY_ATTS);
}
代码示例来源:origin: org.restlet/org.restlet.ext.xml
/**
* Add an empty element without a qname or attributes.
*
* <p>
* This method will supply an empty string for the qname and an empty
* attribute list. It invokes
* {@link #emptyElement(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 empty tag, or if a
* restlet further down the filter chain raises an exception.
* @see #emptyElement(String, String, String, Attributes)
*/
public void emptyElement(String uri, String localName) throws SAXException {
emptyElement(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.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 {
final AttributesImpl attributes = new AttributesImpl();
if (getLabel() != null) {
attributes.addAttribute("", "label", null, "text", getLabel());
}
if ((getScheme() != null) && (getScheme().toString() != null)) {
attributes.addAttribute("", "scheme", null, "atomURI", getScheme()
.toString());
}
if (getTerm() != null) {
attributes.addAttribute("", "term", null, "text", getTerm());
}
writer.emptyElement(ATOM_NAMESPACE, "category", null, attributes);
}
代码示例来源: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.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 {
final AttributesImpl attributes = new AttributesImpl();
if (getLabel() != null) {
attributes.addAttribute("", "label", null, "text", getLabel());
}
if ((getScheme() != null) && (getScheme().toString() != null)) {
attributes.addAttribute("", "scheme", null, "atomURI", getScheme()
.toString());
}
if (getTerm() != null) {
attributes.addAttribute("", "term", null, "text", getTerm());
}
writer.emptyElement(ATOM_NAMESPACE, "category", null, attributes);
}
代码示例来源: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.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 {
final AttributesImpl attributes = new AttributesImpl();
if ((getUri() != null) && (getUri().toString() != null)) {
attributes.addAttribute("", "uri", null, "atomURI", getUri()
.toString());
}
if (getVersion() != null) {
attributes.addAttribute("", "version", null, "text", getVersion());
}
if (getName() != null) {
writer.dataElement(ATOM_NAMESPACE, "generator", null, attributes,
getName());
} else {
writer.emptyElement(ATOM_NAMESPACE, "generator", null, attributes);
}
}
代码示例来源: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 {
final AttributesImpl attributes = new AttributesImpl();
if ((getUri() != null) && (getUri().toString() != null)) {
attributes.addAttribute("", "uri", null, "atomURI", getUri()
.toString());
}
if (getVersion() != null) {
attributes.addAttribute("", "version", null, "text", getVersion());
}
if (getName() != null) {
writer.dataElement(ATOM_NAMESPACE, "generator", null, attributes,
getName());
} else {
writer.emptyElement(ATOM_NAMESPACE, "generator", null, attributes);
}
}
代码示例来源: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.atom
getContent());
} else {
writer.emptyElement(ATOM_NAMESPACE, localName, null, attributes);
代码示例来源:origin: org.restlet.android/org.restlet.ext.atom
getContent());
} else {
writer.emptyElement(ATOM_NAMESPACE, localName, null, attributes);
代码示例来源: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 (getBaseRef() != null) {
attributes.addAttribute("", "base", null, "xs:anyURI", getBaseRef()
.toString());
}
if (getDocumentations().isEmpty() && getResources().isEmpty()) {
writer.emptyElement(APP_NAMESPACE, "resources", null, attributes);
} else {
writer.startElement(APP_NAMESPACE, "resources", null, attributes);
for (final DocumentationInfo documentationInfo : getDocumentations()) {
documentationInfo.writeElement(writer);
}
for (final ResourceInfo resourceInfo : getResources()) {
resourceInfo.writeElement(writer);
}
writer.endElement(APP_NAMESPACE, "resources");
}
}
代码示例来源:origin: org.restlet.jee/org.restlet.ext.wadl
writer.emptyElement(APP_NAMESPACE, "resource_type", null,
attributes);
} else {
代码示例来源: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");
}
}
我想知道 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',因为它正被另一
我是一名优秀的程序员,十分优秀!