- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我发送电子邮件的代码
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.abc.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class","javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication("vijaya.teke@abc.com", "********");
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("vijaya.teke@abc.com"));
message.setRecipients(Message.RecipientType.TO,InternetAddress.parse("vijaya.teke@abc.com"));
message.setSubject("Testing Subject");
BodyPart messageBodyPart1 = new MimeBodyPart();
messageBodyPart1.setText("This is message body");
MimeBodyPart messageBodyPart2 = new MimeBodyPart();
String filename = "D:\\Automation\\Automation workspace\\TestSelenium\\Screenshots";
DataSource source = new FileDataSource(filename);
messageBodyPart2.setDataHandler(new DataHandler(source));
messageBodyPart2.setFileName(filename);
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart2);
multipart.addBodyPart(messageBodyPart1);
message.setContent(multipart);
Transport.send(message);
System.out.println("=====Email Sent=====");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
我在“Session session = Session.getDefaultInstance(props,”行)行收到错误“java.lang.NoClassDefFoundError: com/sun/mail/util/MailLogger”。我没有得到解决方案。请帮助我.
最佳答案
以下对我有用:
package Reporting;
/**
* @author Shubham Jain
*
*/
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.activation.FileDataSource;
import javax.mail.*;
import javax.mail.internet.*;
import Utilities.Configuration;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.*;
/**
* Note : This Class zip the folder of reports and sent the email via gmail. Make sure files do not contains any JS files or extention banned by gmail.
* Don't use automation log in this class, It will override all before logs of the same session
* */
public class SendMailClass
{
public SendMailClass(){
}
/* static ExcelLib xl = new ExcelLib();
static String browserType = xl.getXLcellValue("Controller", 1, 0);
static String serverName = xl.getXLcellValue("Controller", 1, 1);*/
private static String OSNAMES = System.getProperty("os.name").toLowerCase();
static String OS = OSNAMES.split(" ")[0];
static Date currentDate = new Date();
static SimpleDateFormat dateFormatForFileName = new SimpleDateFormat("yyyy-MM-dd HH-mm-ss");//dd/MM/yyyy
static String fileDateFormet = dateFormatForFileName.format(currentDate);
// static String testoutputfolderpath = System.getProperty("user.dir")+ File.separator +"target"+ File.separator+ "cucumber-html-reports";
// static String zipFilefolderpath = System.getProperty("user.dir")+ File.separator +"reports"+File.separator+"results"+fileDateFormet; // Zip Reports Files
static String zipLogFilefolderpath = System.getProperty("user.dir")+ File.separator +"logs"+File.separator+"logs.txt";
/* static File folder = new File(zipLogFilefolderpath);
static File zipFile = new File(zipFilefolderpath);*/
static String subject = "Shubham Automation Application Test Cucumber report";
static String PlatformName = Configuration.getConfigurationValueForProperty("Report-Upload-Platform-Name");
static String emailForsendingnotification = Configuration.getConfigurationValueForProperty("Email-Sending-Notification");
static String PasswordForsendingnotification = Configuration.getConfigurationValueForProperty("Pass-Sending-Notification");
public static void main(String[] args) throws IOException {
try {
execute();
} catch (Exception e) {
System.out.println(e.getMessage());
e.printStackTrace();
}
}
public static void execute() throws Exception
{
// ExcelLib xl = new ExcelLib();
String FilenameLocalPath=ZipReports.zipFilePathName();
String[] b = FilenameLocalPath.split("\\\\");
String FileName = b[b.length-1];
String text = "Hi Greetings,\n This is Final Automation Test Report.\n This Auto-generated report please do not reply.\n Find the reports on "+PlatformName+" account, The Report file name is : "+FileName+".\n Please download your file from given URL: https://www.dropbox.com/home/Apps/AutomationResults/Apps/ShubhamCucumberReports";
//////////////////////////////////////////////////////////////////////////////////
////////////////////////Create a zip file of test-output folder /////////////////
// path of file which contains report
// String path = zipFilefolderpath;
String path2 = zipLogFilefolderpath;
// No of recipients of the report, you can have many separated by comma
String mailto = "shubham.jain@abc.co.in";
String mailcc = "shubham.jain@abc.co.in";
String mailbcc = "shubham.jain@abc.co.in";
String[] to={mailto};
String[] cc={mailcc};
String[] bcc={mailbcc};
// email user name and password of sender
SendMailClass.sendMail(emailForsendingnotification,
PasswordForsendingnotification,
"smtp.gmail.com",
"465",
"true",
"true",
"javax.net.ssl.SSLSocketFactory",
"false",
to,
cc,
bcc,
subject,
text,
path2,
"Test-Report");
}
public static boolean sendMail(String userName,
String passWord,
String host,
String port,
String starttls,
String auth,
String socketFactoryClass,
String fallback,
String[] to,
String[] cc,
String[] bcc,
String subject,
String text,
String attachmentPath,
String attachmentName){
//Object Instantiation of a properties file.
Properties props = new Properties();
props.put("mail.smtp.user", userName);
props.put("mail.smtp.host", host);
if(!"".equals(port)){
props.put("mail.smtp.port", port);
}
if(!"".equals(starttls)){
props.put("mail.smtp.starttls.enable",starttls);
props.put("mail.smtp.auth", auth);
}
if(!"".equals(port)){
props.put("mail.smtp.socketFactory.port", port);
}
if(!"".equals(socketFactoryClass)){
props.put("mail.smtp.socketFactory.class",socketFactoryClass);
}
if(!"".equals(fallback)){
props.put("mail.smtp.socketFactory.fallback", fallback);
}
try{
Session session = Session.getDefaultInstance(props, null);
MimeMessage msg = new MimeMessage(session);
msg.setText(text);
msg.setSubject(subject);
Multipart multipart = new MimeMultipart();
MimeBodyPart messageBodyPart = new MimeBodyPart();
//////////////////////////////////
BodyPart objMessageBodyPart = new MimeBodyPart();
objMessageBodyPart.setText(text);
/////////////////////////////////
messageBodyPart.setText(text);
messageBodyPart.setContent(text, "text/html");
DataSource source = new FileDataSource(attachmentPath);
messageBodyPart.setDataHandler(new DataHandler(source));
messageBodyPart.setFileName("Logs.txt");
multipart.addBodyPart(messageBodyPart);
multipart.addBodyPart(objMessageBodyPart);
/*
/////////////////////////////// Add another File ////////////////
DataSource source2 = new FileDataSource(attachmentPath2);
BodyPart messageBodyPart2 = new MimeBodyPart();
messageBodyPart2.setText(text);
messageBodyPart2.setDataHandler(new DataHandler(source2));
messageBodyPart2.setFileName(attachmentPath2);
messageBodyPart2.setFileName("Reports.txt");
multipart.addBodyPart(messageBodyPart2);
/////////////////////////////////////////////////////////////////////
*/
msg.setContent(multipart);
msg.setFrom(new InternetAddress(userName));
for(int i=0;i<to.length;i++){
msg.addRecipient(Message.RecipientType.TO, new
InternetAddress(to[i]));
}
for(int i=0;i<cc.length;i++){
msg.addRecipient(Message.RecipientType.CC, new
InternetAddress(cc[i]));
}
for(int i=0;i<bcc.length;i++){
msg.addRecipient(Message.RecipientType.BCC, new
InternetAddress(bcc[i]));
}
msg.saveChanges();
Transport transport = session.getTransport("smtp");
transport.connect(host, userName, passWord);
transport.sendMessage(msg, msg.getAllRecipients());
transport.close();
//closing .exe of chrome or phantom driver binaries
// AppDriver.clearBrowserContext(Page.driver);
return true;
} catch (Exception mex){
mex.printStackTrace();
return false;
}
}
}
删除一些与您无关的代码。例如 zip 调用函数等
关于java - 如何解决异常 "java.lang.NoClassDefFoundError: com/sun/mail/util/MailLogger"。我正在尝试通过 selenium webdriver 发送电子邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56787279/
我一直在尝试在我的代码中使用 Jar 文件作为库,并且它编译得很好。但是,在运行时,我不断收到 NoClassDefFoundError信息。为什么会这样?我也在编译路径和运行时路径中包含了 Jar
关于Apache-Kafka messaging queue . 我已经从 Kafka 下载页面下载了 Apache Kafka。我已将其提取到 /opt/apache/installed/kafka
我正在尝试使用 Apache DefaultHttpClient 来执行 JSON POST 请求,当我尝试实例化它时它给我一个 NoClassDefFound 错误。 HttpClient clie
当我在模拟器(Nexus One API 22)上测试我的应用程序时,它运行顺利,没有失败。然而,当我在自己的个人手机(三星 Galaxy S5,Android 版本 5.0)上测试该应用程序时,它崩
我需要在python中使用java代码来减少,所以我选择了Jython。一段时间后,我设法弄清楚了如何运行我的代码,但我遇到了最奇怪的事情。当我写作时 from vohmm.corpus import
这是我的mybatis配置。这是我的pom.xml。。当我运行项目时,它显示了错误的原因:org/mybatis/spring/mapper/MapperScannerConfigurer.有没有人能
所以我正在尝试构建一个简单的gradle应用,当我运行它时, geb.ConfigurationLoader$UnableToLoadException: Unable to load configu
假设我有一个主类应用程序,它使用 URLClassLoader 加载子目录 plugins 中的所有 jar: public class App(){ public static void m
我在尝试运行 Netbeans (7.2) 时遇到一个反复出现的错误,上次遇到它时,我发现某个地方可以将所有文件移动到一个新项目。这可能会奏效,但我的项目的规模让这很麻烦。这是踪迹... Except
这个问题已经有答案了: Including all the jars in a directory within the Java classpath (25 个回答) 已关闭 6 年前。 我得到一个
在这里,我正在下载网页源代码,然后将其存储在文本文件中。然后我读取该文件并将其与正则表达式匹配以搜索特定字符串。 没有编译器错误。 Exception in thread "main" java.la
我正在一个“大”的 Maven/Java 项目中工作,无法理解运行应用程序时遇到的错误(它编译正常)。我得到的错误代码是: java.lang.NoClassDefFoundError: Could
对于学校的作业,我需要创建一个类 Blender 来实现一些预定义的东西。我收到了一个 JAR 文件 imagecompositor.jar,它可以完成所有操作并使用 Blender 类。 JAR 文
我遇到了一个问题,即抛出 NoClasDefFoundError。这让我感到困惑,因为我正在使用接口(interface),并且没有类定义应该可用。我已经阅读了一些指向类路径的帖子,但我不认为这是这里
我正在使用 hibernate,在使用 hibernate Connection 时出现如下错误 java.lang.NoClassDefFoundError: Could not initializ
我有一个使用 SubVersion 的 Android 项目。我使用 Subclipse 将项目导入我的 Eclipse Wordspace。 现在我有一个问题: java.lang.NoClass
我需要编译一个外部 java 文件(比如 a.java)。这是我为此编写的代码。 (字符串路径包含java和class文件的路径) command[0] = "javac"; comm
我正在尝试运行一个基本的 Hibernate 程序。当我运行它时,出现以下错误 java.lang.NoClassDefFoundError: org/jboss/logging/BasicLogge
标题:Eclipse插件开发由于java.lang.NoClassDefFoundError无法实例化类: 试图构建一个 eclipse 插件,但遇到一些运行时错误.. 我知道这是由于代码所依赖的类文
我是新手,我无法让它工作......:/ 我的 build.sbt: val apacheDeps = Seq( "commons-validator" % "commons-validator"
我是一名优秀的程序员,十分优秀!