sendMailSession=Session.getInstance(props);
改成:
Authenticator auth = new PopupAuthenticator();
sendMailSession=Session.getInstance(props,auth);//class PopupAuthenticator 
public class PopupAuthenticator extends Authenticator
{
public PasswordAuthentication getPasswordAuthentication()
{
String username, password;
username = "";
password = "";
return new PasswordAuthentication(username, password);
}
}