コード例 #1
0
ファイル: CreationViaEmail.java プロジェクト: csj4032/yobi
 private static Content getContent(MimePart part) throws IOException, MessagingException {
   Content result = new Content();
   result.body = (String) part.getContent();
   result.type = part.getContentType();
   return result;
 }