Properties props = new Properties();
props.put("mail.smtp.host", host);
props.put("mail.smtp.ehlo", ehlo);
props.put("mail.smtp.auth", auth);
System.out.println("in try"); Session session = Session.getDefaultInstance(props,null);
if(session==null){
System.out.println("error");
} session.setDebug(debugFlag);

MimeMessage msg = new MimeMessage(session);呵呵,剪一代码出来,在sun的j2ee下发邮件一切正常!!!