本文整理汇总了Java中com.sun.xml.internal.ws.developer.StreamingDataHandler.getHrefCid方法的典型用法代码示例。如果您正苦于以下问题:Java StreamingDataHandler.getHrefCid方法的具体用法?Java StreamingDataHandler.getHrefCid怎么用?Java StreamingDataHandler.getHrefCid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.sun.xml.internal.ws.developer.StreamingDataHandler
的用法示例。
在下文中一共展示了StreamingDataHandler.getHrefCid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: writeNonMtomAttachments
import com.sun.xml.internal.ws.developer.StreamingDataHandler; //导入方法依赖的package包/类
@SuppressWarnings("resource")
private void writeNonMtomAttachments(AttachmentSet attachments,
OutputStream out, String boundary) throws IOException {
for (Attachment att : attachments) {
DataHandler dh = att.asDataHandler();
if (dh instanceof StreamingDataHandler) {
StreamingDataHandler sdh = (StreamingDataHandler) dh;
// If DataHandler has href Content-ID, it is MTOM, so skip.
if (sdh.getHrefCid() != null)
continue;
}
// build attachment frame
writeln("--" + boundary, out);
writeMimeHeaders(att.getContentType(), att.getContentId(), out);
att.writeTo(out);
writeln(out); // write \r\n
}
}
示例2: ByteArrayBuffer
import com.sun.xml.internal.ws.developer.StreamingDataHandler; //导入方法依赖的package包/类
ByteArrayBuffer(@NotNull DataHandler dh, String b) {
this.dh = dh;
String cid = null;
if (dh instanceof StreamingDataHandler) {
StreamingDataHandler sdh = (StreamingDataHandler) dh;
if (sdh.getHrefCid() != null)
cid = sdh.getHrefCid();
}
this.contentId = cid != null ? cid : encodeCid();
boundary = b;
}