- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sun.xml.bind.v2.runtime.XMLSerializer.endElement()
方法的一些代码示例,展示了XMLSerializer.endElement()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSerializer.endElement()
方法的具体详情如下:
包路径:com.sun.xml.bind.v2.runtime.XMLSerializer
类名称:XMLSerializer
方法名:endElement
[英]Ends marshalling of an element. Pops the internal stack.
[中]结束元素的编组。弹出内部堆栈。
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void serializeBody(Object array, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
int len = Array.getLength(array);
for( int i=0; i<len; i++ ) {
Object item = Array.get(array,i);
// TODO: check the namespace URI.
target.startElement("","item",null,null);
if(item==null) {
target.writeXsiNilTrue();
} else {
target.childAsXsiType(item,"arrayItem",itemBeanInfo, false);
}
target.endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
@Override
public void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
ValueT v = acc.get(o);
if(v!=null) {
bareStartTag(w,tagName,v);
for( Map.Entry e : (Set<Map.Entry>)v.entrySet() ) {
bareStartTag(w,entryTag,null);
Object key = e.getKey();
if(key!=null) {
w.startElement(keyTag,key);
w.childAsXsiType(key,fieldName,keyBeanInfo, false);
w.endElement();
}
Object value = e.getValue();
if(value!=null) {
w.startElement(valueTag,value);
w.childAsXsiType(value,fieldName,valueBeanInfo, false);
w.endElement();
}
w.endElement();
}
w.endElement();
} else
if(nillable) {
w.startElement(tagName,null);
w.writeXsiNilTrue();
w.endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void endElement(String namespaceURI, String localName, String qName) throws SAXException {
try {
flushText();
serializer.endElement();
} catch (IOException e) {
throw new SAXException2(e);
} catch (XMLStreamException e) {
throw new SAXException2(e);
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void marshal(T value, XMLSerializer out) throws IOException, SAXException, XMLStreamException {
out.startElement(tagName,null);
if(value==null) {
out.writeXsiNilTrue();
} else {
out.childAsXsiType(value,null,bi,false);
}
out.endElement();
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
if(tagName==null) {
Class beanClass = bean.getClass();
String message;
if (beanClass.isAnnotationPresent(XmlRootElement.class)) {
message = Messages.UNABLE_TO_MARSHAL_UNBOUND_CLASS.format(beanClass.getName());
} else {
message = Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(beanClass.getName());
}
target.reportError(new ValidationEventImpl(ValidationEvent.ERROR,message,null, null));
} else {
target.startElement(tagName,bean);
target.childAsSoleContent(bean,null);
target.endElement();
if (retainPropertyInfo) {
target.currentProperty.remove();
}
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public final void serializeRoot(BeanT bean, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
if(tagName==null) {
target.reportError(
new ValidationEventImpl(
ValidationEvent.ERROR,
Messages.UNABLE_TO_MARSHAL_NON_ELEMENT.format(bean.getClass().getName()),
null,
null));
}
else {
target.startElement(tagName,bean);
target.childAsSoleContent(bean,null);
target.endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
w.childAsXsiType(v,fieldName,tt.beanInfo, addNilDecl && nillable);
w.endElement();
} else if (nillable) {
w.startElement(nullTagName,null);
w.writeXsiNilTrue();
w.endElement();
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public final void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
ListT list = acc.get(o);
if(list!=null) {
if(wrapperTagName!=null) {
w.startElement(wrapperTagName,null);
w.endNamespaceDecls(list);
w.endAttributes();
}
serializeListBody(o,w,list);
if(wrapperTagName!=null)
w.endElement();
} else {
// list is null
if(isWrapperNillable) {
w.startElement(wrapperTagName,null);
w.writeXsiNilTrue();
w.endElement();
} // otherwise don't print the wrapper tag name
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
w.endElement();
} else {
if(nillableTagName!=null) {
w.startElement(nillableTagName,null);
w.writeXsiNilTrue();
w.endElement();
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
@Override
public void writeLeafElement(XMLSerializer w, Name tagName, BeanT o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
w.startElement(tagName,null);
declareNamespace(o,w);
w.endNamespaceDecls(null);
w.endAttributes();
xducer.writeText(w,acc.get(o),fieldName);
w.endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void leafElement( Name tagName, String data, String fieldName ) throws SAXException, IOException, XMLStreamException {
if(seenRoot) {
textHasAlreadyPrinted = false;
nse = nse.push();
out.beginStartTag(tagName);
out.endStartTag();
if(data != null)
try {
out.text(data,false);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(Messages.ILLEGAL_CONTENT.format(fieldName, e.getMessage()));
}
out.endTag(tagName);
nse = nse.pop();
} else {
// root element has additional processing like xsi:schemaLocation,
// so we need to go the slow way
startElement(tagName,null);
endNamespaceDecls(null);
endAttributes();
try {
out.text(data, false);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(Messages.ILLEGAL_CONTENT.format(fieldName, e.getMessage()));
}
endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
@Override
public void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
boolean hasValue = xacc.hasValue(o);
Object obj = null;
try {
obj = acc.getUnadapted(o);
} catch (AccessorException ae) {
; // noop
}
Class valueType = acc.getValueType();
// check for different type than expected. If found, add xsi:type declaration
if (xsiTypeNeeded(o, w, obj, valueType)) {
w.startElement(tagName, outerPeer);
w.childAsXsiType(obj, fieldName, w.grammar.getBeanInfo(valueType), false);
w.endElement();
} else { // current type is expected
if (hasValue) {
xacc.writeLeafElement(w, tagName, o, fieldName);
} else if (nillable) {
w.startElement(tagName, null);
w.writeXsiNilTrue();
w.endElement();
}
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
target.childAsXsiType(value,"value",tbi, false);
target.endElement();
} else {
try {
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
@Override
public void serializeBody(BeanT o, XMLSerializer w, Object outerPeer) throws SAXException, AccessorException, IOException, XMLStreamException {
ListT list = acc.get(o);
if(list!=null) {
if(xacc.useNamespace()) {
w.startElement(tagName,null);
xacc.declareNamespace(o,w);
w.endNamespaceDecls(list);
w.endAttributes();
xacc.writeText(w,o,fieldName);
w.endElement();
} else {
xacc.writeLeafElement(w, tagName, o, fieldName);
}
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void leafElement( Name tagName, Pcdata data, String fieldName ) throws SAXException, IOException, XMLStreamException {
if(seenRoot) {
textHasAlreadyPrinted = false;
nse = nse.push();
out.beginStartTag(tagName);
out.endStartTag();
if(data != null)
out.text(data,false);
out.endTag(tagName);
nse = nse.pop();
} else {
// root element has additional processing like xsi:schemaLocation,
// so we need to go the slow way
startElement(tagName,null);
endNamespaceDecls(null);
endAttributes();
out.text(data,false);
endElement();
}
}
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
serializer.childAsXsiType(obj,"root",bi, false);
serializer.endElement();
postwrite();
} catch( SAXException e ) {
代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime
public void serializeBody(Object array, XMLSerializer target) throws SAXException, IOException, XMLStreamException {
int len = Array.getLength(array);
for( int i=0; i<len; i++ ) {
Object item = Array.get(array,i);
// TODO: check the namespace URI.
target.startElement("","item",null,null);
if(item==null) {
target.writeXsiNilTrue();
} else {
target.childAsXsiType(item,"arrayItem",itemBeanInfo, false);
}
target.endElement();
}
}
代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime
public void endElement(String namespaceURI, String localName, String qName) throws SAXException {
try {
flushText();
serializer.endElement();
} catch (IOException e) {
throw new SAXException2(e);
} catch (XMLStreamException e) {
throw new SAXException2(e);
}
}
代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime
public void marshal(T value, XMLSerializer out) throws IOException, SAXException, XMLStreamException {
out.startElement(tagName,null);
if(value==null) {
out.writeXsiNilTrue();
} else {
out.childAsXsiType(value,null,bi,false);
}
out.endElement();
}
代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime
@Override
public void writeLeafElement(XMLSerializer w, Name tagName, BeanT o, String fieldName) throws SAXException, AccessorException, IOException, XMLStreamException {
w.startElement(tagName,null);
declareNamespace(o,w);
w.endNamespaceDecls(null);
w.endAttributes();
xducer.writeText(w,acc.get(o),fieldName);
w.endElement();
}
}
在我的 Visual Studio 2010 项目中,我使用以下 Post-Build 事件命令行使用 sgen 创建 XmlSerializers.dll。 构建后事件: "$(ProgramFil
我用 XMLSerializer 类做了一些事情。像大多数初学者一样,我在应用程序启动时遇到性能问题。我阅读了很多博客、文章,最后使用了 SGEN 工具。现在性能看起来还不错,但我还有一些不清楚的地方
过去 2 天我一直被这个问题困扰,但仍然没有解决,我正在寻求帮助。 我的 Listbox根据在 Combobox 中选择的项目,获取添加到其中的生成项目.当我点击按钮时 Create出现一个带有 We
我正在尝试解决如何生成一些 Xml,它使用 XmlSerializer 的一组类中的前缀不仅仅是微不足道的使用。我还希望能够读取相同的 Xml(这相当简单,但随着我使用更复杂的属性似乎消失了。 具体用
XmlSerializer 很难(= 不)反序列化包含表情符号字符的内容,例如 ��。我读过这样的字符在 XML 标准中实际上是非法的;但是,如果我想忠实地表示包含表情符号的聊天对话,则需要它们。如何
我将 XmlSerializer 用于 WCF 服务(就我的服务而言,这是有原因的)。但是最近我遇到了这个问题:我找不到一种简单的方法来使引用类型属性成为必需的,即使其在 XSD 中的定义如下所示:
假设您有两个类,一个继承另一个类,并且子类需要使用 XmlSerializer 进行序列化/反序列化。但是,父级包含一个不可序列化的成员,例如字典。 public class Parent {
我正在尝试使用 XmlSerializer 解析具有如下所示元素的 XML。 amount 元素下有相当多的货币类型,我想将它们反序列化为一个对象集合,这些对象具有保存货币类型的字符串属性和保存金额的
我正在用 Javascript 生成 KML 文档,并尝试使用 XMLSerializer生成 XML 文件,但它生成所有小写标签,即使我在 DOM 中以大写形式创建标签。 是 DOM 破坏了大小写还
我有一小段代码可以将 XML 解析为 JSON。它工作得很好,直到我引入 XMLSerializer 来获取 JSON。 public static String convertXMLFileToSt
假设您有两个类,一个继承另一个,子类需要使用 XmlSerializer 进行序列化/反序列化。但是,父级包含一个不可序列化的成员,比如字典。 public class Parent { pu
我正在尝试使用 XmlSerializer 解析具有如下所示元素的 XML。 amount 元素下有相当多的货币类型,我想将它们反序列化为一个对象集合,这些对象具有保存货币类型的字符串属性和保存金额的
我正在尝试将继承属性的所有成员序列化 (XmlSerializer) 作为特性。 两个类: public class Tree { public Point Location { get; s
我在使用 XmlSerializer 时遇到了修剪字符串的问题, 当使用 XmlReader 时。 IgnoreWhitespace 选项显示无效,元素字符串仍包含\n 和空格。 有什么方法可以“即时
我有以下扩展方法来序列化我的类.... public static string SerializeToXml(this object obj) {
我正在尝试反序列化以下 XML(摘录): Waking The Demon Bullet For My Valentine false B
我在使用 .NET 中的 XmlSerializer 时遇到了一些问题。 这里我有一个我刚刚建立的小例子。 (也可用 @ gist https://gist.github.com/2d84be9041
我从 DTD(通过 XSD 和 xsd.exe)为我的 C# 项目创建了类,因此我可以轻松地将它们反序列化为代码中的模型类。 我大致是这样的: XmlReaderSettings readerSett
我使用 XSD.EXE 将 XSD 转换为对象。这很好用,我可以很好地使用 XMLSerializer 反序列化,除了作为数组生成的子元素不会填充。 private SubElements[]
对不起我的英语。我有 XmlSerializer 的奇怪之处。这是我的代码 [Serializable] public class Radio { public bool hasSubWoof
我是一名优秀的程序员,十分优秀!