/**
* Loads the given headers and content to this message.
*
* @param headers the message headers.
* @param content the message content.
* @throws MessagingException if unable to construct the mime body part.
* @throws IOException unable to read the content stream.
*/
private void load(InternetHeaders headers, InputStream content)
throws MessagingException, IOException {
InternetHeaders bodyHeaders = new InternetHeaders();
copyHeaders(headers, bodyHeaders, "(?i)(?s)content-.*", true);
this.headers = headers;
this.bodyPart = new MimeBodyPart(bodyHeaders, IOHandler
.readBytes(content));
}
AS2Message.java 文件源码
java
阅读 24
收藏 0
点赞 0
评论 0
项目:hermes
作者:
评论列表
文章目录