当前位置: 技术问答>java相关
很期待各位能解答一个javamail的问题
来源: 互联网 发布时间:2015-07-23
本文导语: 我在网上拷贝了一份javamail的程序,在用Juilder6编译时弹出对话框提示:“Could not find the main class.Program will exit!”,等编辑结束后在Juilder6下边的提示栏里有如下提示:“java.lang.NoClassDefFoundError: javamail Exception in...
我在网上拷贝了一份javamail的程序,在用Juilder6编译时弹出对话框提示:“Could not find the main class.Program will exit!”,等编辑结束后在Juilder6下边的提示栏里有如下提示:“java.lang.NoClassDefFoundError: javamail Exception in thread "main" ”请问各位如何解决?是不是在Juilder6里要设置包路径之类的?我已经在环境变量里加入了mail.jar、pop3.jar、activation.jar!
源程序:
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;
public void postMail( String recipients[ ], String subject, String message , String from) throws MessagingException
{
boolean debug = false;
//Set the host smtp address
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.sina.com.cn");
// create some properties and get the default Session
Session session = Session.getDefaultInstance(props, null);
session.setDebug(debug);
// create a message
Message msg = new MimeMessage(session);
// set the from and to address
InternetAddress addressFrom = new InternetAddress(from);
msg.setFrom(addressFrom);
InternetAddress[] addressTo = new InternetAddress[recipients.length];
for (int i = 0; i
源程序:
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;
public void postMail( String recipients[ ], String subject, String message , String from) throws MessagingException
{
boolean debug = false;
//Set the host smtp address
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.sina.com.cn");
// create some properties and get the default Session
Session session = Session.getDefaultInstance(props, null);
session.setDebug(debug);
// create a message
Message msg = new MimeMessage(session);
// set the from and to address
InternetAddress addressFrom = new InternetAddress(from);
msg.setFrom(addressFrom);
InternetAddress[] addressTo = new InternetAddress[recipients.length];
for (int i = 0; i
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!