本文整理汇总了Java中com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil类的典型用法代码示例。如果您正苦于以下问题:Java XMLStreamWriterUtil类的具体用法?Java XMLStreamWriterUtil怎么用?Java XMLStreamWriterUtil使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
XMLStreamWriterUtil类属于com.sun.xml.internal.ws.streaming包,在下文中一共展示了XMLStreamWriterUtil类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: writeTo
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
try {
// Get the encoding of the writer
String encoding = XMLStreamWriterUtil.getEncoding(sw);
// Get output stream and use JAXB UTF-8 writer
OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), null);
} else {
bridge.marshal(jaxbObject,sw, null);
}
} catch (JAXBException e) {
throw new XMLStreamException2(e);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:17,代码来源:JAXBHeader.java
示例2: writePayloadTo
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
public void writePayloadTo(XMLStreamWriter sw) throws XMLStreamException {
try {
// MtomCodec sets its own AttachmentMarshaller
AttachmentMarshaller am = (sw instanceof MtomStreamWriter)
? ((MtomStreamWriter)sw).getAttachmentMarshaller()
: new AttachmentMarshallerImpl(attachmentSet);
// Get output stream and use JAXB UTF-8 writer
OutputStream os = XMLStreamWriterUtil.getOutputStream(sw);
if (os != null) {
bridge.marshal(jaxbObject, os, sw.getNamespaceContext(),am);
} else {
bridge.marshal(jaxbObject,sw,am);
}
//cleanup() is not needed since JAXB doesn't keep ref to AttachmentMarshaller
//am.cleanup();
} catch (JAXBException e) {
// bug 6449684, spec 4.3.4
throw new WebServiceException(e);
}
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:22,代码来源:JAXBMessage.java
示例3: writePayloadTo
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
@Override
public void writePayloadTo(XMLStreamWriter sw) throws XMLStreamException {
try {
// MtomCodec sets its own AttachmentMarshaller
AttachmentMarshaller am = (sw instanceof MtomStreamWriter)
? ((MtomStreamWriter)sw).getAttachmentMarshaller()
: new AttachmentMarshallerImpl(attachmentSet);
// Get the encoding of the writer
String encoding = XMLStreamWriterUtil.getEncoding(sw);
// Get output stream and use JAXB UTF-8 writer
OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
if (rawContext != null) {
Marshaller m = rawContext.createMarshaller();
m.setProperty("jaxb.fragment", Boolean.TRUE);
m.setAttachmentMarshaller(am);
if (os != null) {
m.marshal(jaxbObject, os);
} else {
m.marshal(jaxbObject, sw);
}
} else {
if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), am);
} else {
bridge.marshal(jaxbObject, sw, am);
}
}
//cleanup() is not needed since JAXB doesn't keep ref to AttachmentMarshaller
//am.cleanup();
} catch (JAXBException e) {
// bug 6449684, spec 4.3.4
throw new WebServiceException(e);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:37,代码来源:JAXBMessage.java
示例4: writeTo
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
@Override
@SuppressWarnings("unchecked")
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
try {
// MtomCodec sets its own AttachmentMarshaller
AttachmentMarshaller am = (sw instanceof MtomStreamWriter)
? ((MtomStreamWriter) sw).getAttachmentMarshaller()
: new AttachmentMarshallerImpl(attachmentSet);
// Get the encoding of the writer
String encoding = XMLStreamWriterUtil.getEncoding(sw);
// Get output stream and use JAXB UTF-8 writer
OutputStream os = bridge.supportOutputStream() ? XMLStreamWriterUtil.getOutputStream(sw) : null;
if (rawContext != null) {
Marshaller m = rawContext.createMarshaller();
m.setProperty("jaxb.fragment", Boolean.FALSE);
m.setAttachmentMarshaller(am);
if (os != null) {
m.marshal(jaxbObject, os);
} else {
m.marshal(jaxbObject, sw);
}
} else {
if (os != null && encoding != null && encoding.equalsIgnoreCase(SOAPBindingCodec.UTF8_ENCODING)) {
bridge.marshal(jaxbObject, os, sw.getNamespaceContext(), am);
} else {
bridge.marshal(jaxbObject, sw, am);
}
}
//cleanup() is not needed since JAXB doesn't keep ref to AttachmentMarshaller
} catch (JAXBException e) {
// bug 6449684, spec 4.3.4
throw new WebServiceException(e);
}
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:39,代码来源:JAXBDispatchMessage.java
示例5: writeTo
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
public void writeTo(XMLStreamWriter sw) throws XMLStreamException {
try {
// Get output stream and use JAXB UTF-8 writer
OutputStream os = XMLStreamWriterUtil.getOutputStream(sw);
if (os != null) {
bridge.marshal(jaxbObject, os, sw.getNamespaceContext());
} else {
bridge.marshal(jaxbObject,sw);
}
} catch (JAXBException e) {
throw new XMLStreamException2(e);
}
}
开发者ID:alexkasko,项目名称:openjdk-icedtea7,代码行数:14,代码来源:JAXBHeader.java
示例6: getEncoding
import com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil; //导入依赖的package包/类
@Override
public String getEncoding() {
return XMLStreamWriterUtil.getEncoding(writer);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:MtomCodec.java
注:本文中的com.sun.xml.internal.ws.streaming.XMLStreamWriterUtil类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论