热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

javax.mail.search.BodyTerm.matchPart()方法的使用及代码示例

本文整理了Java中javax.mail.search.BodyTerm.matchPart()方法的一些代码示例,展示了BodyTerm.matchPart()的具体用法。这些代码示例主要来源于Gi

本文整理了Java中javax.mail.search.BodyTerm.matchPart()方法的一些代码示例,展示了BodyTerm.matchPart()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。BodyTerm.matchPart()方法的具体详情如下:
包路径:javax.mail.search.BodyTerm
类名称:BodyTerm
方法名:matchPart

BodyTerm.matchPart介绍

[英]Search all the parts of the message for any text part that matches the pattern.
[中]在邮件的所有部分中搜索与模式匹配的任何文本部分。

代码示例

代码示例来源:origin: camunda/camunda-bpm-platform

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: com.sun.mail/javax.mail

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: com.sun.mail/javax.mail

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: camunda/camunda-bpm-platform

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: com.sun.mail/mailapi

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: org.glassfish.metro/webservices-extra

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: com.sun.mail/android-mail

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: javax.mail/javax.mail-api

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: jboss/jboss-javaee-specs

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.4_spec

public boolean match(Message message) {
try {
return matchPart(message);
} catch (IOException e) {
return false;
} catch (MessagingException e) {
return false;
}
}

代码示例来源:origin: javax.mail/com.springsource.javax.mail

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax.mail

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.3.1_spec

public boolean match(Message message) {
try {
return matchPart(message);
} catch (IOException e) {
return false;
} catch (MessagingException e) {
return false;
}
}

代码示例来源:origin: com.sun.mail/jakarta.mail

/**
* The match method.
*
* @param msg The pattern search is applied on this Message's body
* @return true if the pattern is found; otherwise false
*/
@Override
public boolean match(Message msg) {
return matchPart(msg);
}

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.4_spec

private boolean matchPart(Part part) throws MessagingException, IOException {
if (part.isMimeType("multipart/*")) {
Multipart mp = (Multipart) part.getContent();
int count = mp.getCount();
for (int i=0; i BodyPart bp = mp.getBodyPart(i);
if (matchPart(bp)) {
return true;
}
}
return false;
} else if (part.isMimeType("text/*")) {
String cOntent= (String) part.getContent();
return super.match(content);
} else if (part.isMimeType("message/rfc822")) {
// nested messages need recursion
return matchPart((Part)part.getContent());
} else {
return false;
}
}
}

代码示例来源:origin: javax.mail/javax.mail-api

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax.mail

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: com.sun.mail/mailapi

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: com.sun.mail/android-mail

int count = mp.getCount();
for (int i = 0; i if (matchPart(mp.getBodyPart(i)))
return true;
} else if (p.isMimeType("message/rfc822")) {
return matchPart((Part)p.getContent());

代码示例来源:origin: org.apache.geronimo.specs/geronimo-javamail_1.3.1_spec

private boolean matchPart(Part part) throws MessagingException, IOException {
if (part.isMimeType("multipart/*")) {
Multipart mp = (Multipart) part.getContent();
int count = mp.getCount();
for (int i=0; i BodyPart bp = mp.getBodyPart(i);
if (matchPart(bp)) {
return true;
}
}
return false;
} else if (part.isMimeType("text/*")) {
String cOntent= (String) part.getContent();
return super.match(content);
} else {
return false;
}
}
}

推荐阅读
  • 深入解析ESFramework中的AgileTcp组件
    本文详细介绍了ESFramework框架中AgileTcp组件的设计与实现。AgileTcp是ESFramework提供的ITcp接口的高效实现,旨在优化TCP通信的性能和结构清晰度。 ... [详细]
  • 本文探讨了为何相同的HTTP请求在两台不同操作系统(Windows与Ubuntu)的机器上会分别返回200 OK和429 Too Many Requests的状态码。我们将分析代码、环境差异及可能的影响因素。 ... [详细]
  • 使用JS、HTML5和C3创建自定义弹出窗口
    本文介绍如何结合JavaScript、HTML5和C3.js来实现一个功能丰富的自定义弹出窗口。通过具体的代码示例,详细讲解了实现过程中的关键步骤和技术要点。 ... [详细]
  • 本文详细介绍了如何使用 HTML 和 CSS 对文件上传按钮进行样式美化,使用户界面更加友好和美观。 ... [详细]
  • 本文探讨了SSDP(简单服务发现协议)和WSD(Web服务发现)协议,特别是SSDP如何通过固定多播地址239.255.255.250:1900实现局域网内的服务自发现功能。文中还详细介绍了SSDP协议的关键操作类型及其应用场景。 ... [详细]
  • 本文详细介绍了 Java 中 freemarker.ext.dom.NodeModel 类的 removeComments 方法,并提供了多个实际使用的代码示例,帮助开发者更好地理解和应用该方法。 ... [详细]
  • 本文详细探讨了 org.apache.hadoop.ha.HAServiceTarget 类中的 checkFencingConfigured 方法,包括其功能、应用场景及代码示例。通过实际代码片段,帮助开发者更好地理解和使用该方法。 ... [详细]
  • 本文详细介绍了优化DB2数据库性能的多种方法,涵盖统计信息更新、缓冲池调整、日志缓冲区配置、应用程序堆大小设置、排序堆参数调整、代理程序管理、锁机制优化、活动应用程序限制、页清除程序配置、I/O服务器数量设定以及编入组提交数调整等方面。通过这些技术手段,可以显著提升数据库的运行效率和响应速度。 ... [详细]
  • 实用正则表达式有哪些
    小编给大家分享一下实用正则表达式有哪些,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下 ... [详细]
  • 在 Android 开发中,通过 Intent 启动 Activity 或 Service 时,可以使用 putExtra 方法传递数据。接收方可以通过 getIntent().getExtras() 获取这些数据。本文将介绍如何使用 RoboGuice 框架简化这一过程,特别是 @InjectExtra 注解的使用。 ... [详细]
  • 探讨如何修复Visual Studio Code中JavaScript的智能感知和自动完成功能在特定场景下无法正常工作的问题,包括配置检查、语言模式选择以及类型注释的使用。 ... [详细]
  • 一个登陆界面
    预览截图html部分123456789101112用户登入1314邮箱名称邮箱为空15密码密码为空16登 ... [详细]
  • 优雅实现 jQuery 折叠展开下拉菜单
    本文介绍了一种使用 jQuery 实现的优雅折叠和展开效果的下拉菜单,通过简单的 HTML 结构和 CSS 样式,结合 jQuery 脚本,可以轻松创建出美观且功能强大的下拉菜单。 ... [详细]
  • 本文详细介绍了如何在 Java 中使用 com.badlogic.gdx.utils.JsonValue.iterator() 方法来遍历和解析 JSON 数据,并提供了多个实际应用中的代码示例。 ... [详细]
  • Vue 3.0 翻牌数字组件使用指南
    本文详细介绍了如何在 Vue 3.0 中使用翻牌数字组件,包括其基本设置和高级配置,旨在帮助开发者快速掌握并应用这一动态视觉效果。 ... [详细]
author-avatar
D之phper
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有