本文整理汇总了Java中org.apache.cxf.staxutils.StaxUtils.writeNode方法的典型用法代码示例。如果您正苦于以下问题:Java StaxUtils.writeNode方法的具体用法?Java StaxUtils.writeNode怎么用?Java StaxUtils.writeNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.cxf.staxutils.StaxUtils
的用法示例。
在下文中一共展示了StaxUtils.writeNode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleMessage
import org.apache.cxf.staxutils.StaxUtils; //导入方法依赖的package包/类
public void handleMessage(Message message) throws Fault {
Document doc = (Document)message.get(RawMessageWSDLGetInterceptor.DOCUMENT_HOLDER);
if (doc == null) {
return;
}
message.remove(RawMessageWSDLGetInterceptor.DOCUMENT_HOLDER);
OutputStream out = message.getContent(OutputStream.class);
String enc = null;
try {
enc = doc.getXmlEncoding();
} catch (Exception ex) {
//ignore - not dom level 3
}
if (enc == null) {
enc = "utf-8";
}
XMLStreamWriter writer = StaxUtils.createXMLStreamWriter(out, enc);
try {
StaxUtils.writeNode(doc, writer, true);
writer.flush();
} catch (XMLStreamException e) {
throw new Fault(e);
}
}
示例2: writeDocument
import org.apache.cxf.staxutils.StaxUtils; //导入方法依赖的package包/类
private static void writeDocument(Document doc, File file) throws IOException, XMLStreamException
{
String enc = null;
try
{
enc = doc.getXmlEncoding();
}
catch (Exception ex)
{
//ignore - not dom level 3
Logger.getLogger(WSDLFilePublisher.class).trace(ex);
}
if (enc == null)
{
enc = "utf-8";
}
FileOutputStream fos = new FileOutputStream(new File(file.toURI()));
try
{
XMLStreamWriter writer = StaxUtils.createXMLStreamWriter(fos, enc);
StaxUtils.writeNode(doc, writer, true);
writer.flush();
}
finally
{
fos.close();
}
}