使用javax.mail发送邮件时获取java.lang.VerifyError

时间:2013-10-30 15:17:17

标签: java javamail verifyerror

我正在尝试使用javax.mail功能发送带附件的邮件,下面是我的代码:

// create the message part
MimeBodyPart messageBodyPart = new MimeBodyPart();
// fill message
messageBodyPart.setText(strmessage);
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);
AdcsipLogger.adcsipLog("begin exportFile...........");
ExportFile exportFile = buildQuestionnaireReport(questionnaire);
// Part two is attachment
messageBodyPart = new MimeBodyPart();
DataSource source = new ExportFileDataSource(exportFile);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName(questionnaire.getName() + ".pdf");
multipart.addBodyPart(messageBodyPart);
// Put parts in message
message.setContent(multipart);
// Send the message
Transport.send(message);

我在线上得到一个例外: messageBodyPart.setDataHandler(new DataHandler(source));

以下是stacktrace的摘录:

[10/30/13 14:44:38:089 CET] 00000062 ServletWrappe E com.ibm.ws.webcontainer.servlet.ServletWrapper service SRVE0068E: Uncaught exception created in one of the service methods of the servlet QuestionnaireControl in application A430-CADCSIP-V8.0_Run4. Exception created : java.lang.VerifyError: javax/mail/internet/MimeBodyPart.setDataHandler(Ljavax/activation/DataHandler;)V

请帮帮我。 感谢。

1 个答案:

答案 0 :(得分:0)

你在WebSphere中运行,对吧?

您的应用程序中是否包含JavaMail jar文件?如果是这样,它可能与WebSphere中包含的版本冲突。