群发和单发没什么区别,会单发,群发也就OK了。
import java.util.Date;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;/**
 * 发送普通邮件,接受普通邮件 发送带有附件的邮件,接收带有附件的邮件 发送html形式的邮件,接受html形式的邮件 发送带有图片的邮件等做了一个总结。
 */
public class Test
{
    // 邮箱服务器
    private String host = "smtp.163.com";
    // 这个是你的邮箱用户名
    private String username = "******";
    // 你的邮箱密码
    private String password = "******";
    
    private String mail_head_name = "this is head of this mail";    private String mail_head_value = "this is head of this mail";    private String mail_to = "[email protected]";    private String mail_from = "*****@163.com";    private String mail_subject = "this is the subject of this test mail";    private String mail_body = "this is the mail_body of this test mail";    private String personalName = "我的邮件";    public Test()
    {
    }    /**
     * 此段代码用来发送普通电子邮件
     */
    public void send() throws Exception
    {
        try
        {
            Properties props = new Properties(); // 获取系统环境
            Authenticator auth = new Email_Autherticator(); // 进行邮件服务器用户认证
            props.put("mail.smtp.host", host);
            props.put("mail.smtp.auth", "true");
            Session session = Session.getDefaultInstance(props, auth);
            // 设置session,和邮件服务器进行通讯。
            MimeMessage message = new MimeMessage(session);
            // message.setContent("foobar, "application/x-foobar"); // 设置邮件格式
            message.setSubject(mail_subject); // 设置邮件主题
            message.setText(mail_body); // 设置邮件正文
            message.setHeader(mail_head_name, mail_head_value); // 设置邮件标题
            message.setSentDate(new Date()); // 设置邮件发送日期
            Address address = new InternetAddress(mail_from, personalName);
            message.setFrom(address); // 设置邮件发送者的地址
            Address toAddress = new InternetAddress(mail_to); // 设置邮件接收方的地址
            message.addRecipient(Message.RecipientType.TO, toAddress);
            Transport.send(message); // 发送邮件
            System.out.println("send ok!");
        } catch (Exception ex)
        {
            ex.printStackTrace();
            throw new Exception(ex.getMessage());
        }
    }    /**
     * 用来进行服务器对用户的认证
     */
    public class Email_Autherticator extends Authenticator
    {
        public Email_Autherticator()
        {
            super();
        }        public Email_Autherticator(String user, String pwd)
        {
            super();
            username = user;
            password = pwd;
        }        public PasswordAuthentication getPasswordAuthentication()
        {
            return new PasswordAuthentication(username, password);
        }
    }    public static void main(String[] args)
    {
        Test sendmail = new Test();
        try
        {
            sendmail.send();
        } catch (Exception ex)
        {
        }
    }}

解决方案 »

  1.   

    我次奥,看错了。
    短信就用第三方提供商的API就行了,收费的。
    http://sms.webchinese.cn/default.shtml
      

  2.   

    不是用短信猫么????
    不是的。java或者js都可以,webservice
      

  3.   

    求源码,求指导
    3.JAVA调用
    import java.io.UnsupportedEncodingException;
    import org.apache.commons.httpclient.Header;
    import org.apache.commons.httpclient.HttpClient;
    import org.apache.commons.httpclient.NameValuePair;
    import org.apache.commons.httpclient.methods.PostMethod;public class SendMsg_webchinese {public static void main(String[] args)throws Exception
    {HttpClient client = new HttpClient();
    PostMethod post = new PostMethod("http://gbk.sms.webchinese.cn"); 
    post.addRequestHeader("Content-Type","application/x-www-form-urlencoded;charset=gbk");//在头文件中设置转码
    NameValuePair[] data ={ new NameValuePair("Uid", "本站用户名"),new NameValuePair("Key", "接口安全密码"),new NameValuePair("smsMob","手机号码"),new NameValuePair("smsText","短信内容")};
    post.setRequestBody(data);client.executeMethod(post);
    Header[] headers = post.getResponseHeaders();
    int statusCode = post.getStatusCode();
    System.out.println("statusCode:"+statusCode);
    for(Header h : headers)
    {
    System.out.println(h.toString());
    }
    String result = new String(post.getResponseBodyAsString().getBytes("gbk")); 
    System.out.println(result);
    post.releaseConnection();}}
      

  4.   

    有短信猫的话,你下载完驱动以后,下载一个Serial Port Monitor去用AT命令
    测试下你这个猫池的固有参数。
      

  5.   

    能和猫池进行对话的话,然后你就去网上下载串口的jar包写程序。
      

  6.   

    你直接论坛上MM我就行,要不你给个QQ