作者热门文章
- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中com.sun.xml.bind.v2.runtime.XMLSerializer.getInlineBinaryFlag()
方法的一些代码示例,展示了XMLSerializer.getInlineBinaryFlag()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLSerializer.getInlineBinaryFlag()
方法的具体详情如下:
包路径:com.sun.xml.bind.v2.runtime.XMLSerializer
类名称:XMLSerializer
方法名:getInlineBinaryFlag
暂无
代码示例来源:origin: com.sun.xml.bind/jaxb-impl
public void text( Pcdata value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException {
if(value instanceof Base64Data && !serializer.getInlineBinaryFlag()) {
Base64Data b64d = (Base64Data) value;
String cid;
if(b64d.hasData())
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.get(),0,b64d.getDataLen(),b64d.getMimeType(),nsUri,localName);
else
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.getDataHandler(),nsUri,localName);
if(cid!=null) {
nsContext.getCurrent().push();
int prefix = nsContext.declareNsUri(WellKnownNamespace.XOP,"xop",false);
beginStartTag(prefix,"Include");
attribute(-1,"href",cid);
endStartTag();
endTag(prefix,"Include");
nsContext.getCurrent().pop();
return;
}
}
next.text(value, needsSeparatingWhitespace);
}
}
代码示例来源:origin: org.glassfish.jaxb/jaxb-runtime
public void text( Pcdata value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException {
if(value instanceof Base64Data && !serializer.getInlineBinaryFlag()) {
Base64Data b64d = (Base64Data) value;
String cid;
if(b64d.hasData())
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.get(),0,b64d.getDataLen(),b64d.getMimeType(),nsUri,localName);
else
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.getDataHandler(),nsUri,localName);
if(cid!=null) {
nsContext.getCurrent().push();
int prefix = nsContext.declareNsUri(WellKnownNamespace.XOP,"xop",false);
beginStartTag(prefix,"Include");
attribute(-1,"href",cid);
endStartTag();
endTag(prefix,"Include");
nsContext.getCurrent().pop();
return;
}
}
next.text(value, needsSeparatingWhitespace);
}
}
代码示例来源:origin: apache/servicemix-bundles
public void text( Pcdata value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException {
if(value instanceof Base64Data && !serializer.getInlineBinaryFlag()) {
Base64Data b64d = (Base64Data) value;
String cid;
if(b64d.hasData())
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.get(),0,b64d.getDataLen(),b64d.getMimeType(),nsUri,localName);
else
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.getDataHandler(),nsUri,localName);
if(cid!=null) {
nsContext.getCurrent().push();
int prefix = nsContext.declareNsUri(WellKnownNamespace.XOP,"xop",false);
beginStartTag(prefix,"Include");
attribute(-1,"href",cid);
endStartTag();
endTag(prefix,"Include");
nsContext.getCurrent().pop();
return;
}
}
next.text(value, needsSeparatingWhitespace);
}
}
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.jaxb-impl
public void text( Pcdata value, boolean needsSeparatingWhitespace ) throws IOException, SAXException, XMLStreamException {
if(value instanceof Base64Data && !serializer.getInlineBinaryFlag()) {
Base64Data b64d = (Base64Data) value;
String cid;
if(b64d.hasData())
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.get(),0,b64d.getDataLen(),b64d.getMimeType(),nsUri,localName);
else
cid = serializer.attachmentMarshaller.addMtomAttachment(
b64d.getDataHandler(),nsUri,localName);
if(cid!=null) {
nsContext.getCurrent().push();
int prefix = nsContext.declareNsUri(WellKnownNamespace.XOP,"xop",false);
beginStartTag(prefix,"Include");
attribute(-1,"href",cid);
endStartTag();
endTag(prefix,"Include");
nsContext.getCurrent().pop();
return;
}
}
next.text(value, needsSeparatingWhitespace);
}
}
本文整理了Java中com.sun.xml.bind.v2.runtime.XMLSerializer.getInlineBinaryFlag()方法的一些代码示例,展示了XMLSerializer.
我是一名优秀的程序员,十分优秀!