0
Mail m = new Mail("mail", "password"); 
String[] toArr = {"tt@gmail.com", "tt1@gmail.com"}; 
//here comes the error!
m.setTo(toArr); 
//here comes the error!
m.setFrom("christian.schartner@gmail.com"); 
//here comes the error!
m.setSubject("using my Mail JavaMail wrapper from an Android device."); 
//on m.setBody is no error!
m.setBody("Email body."); 

粘贴此代码时,Eclipse 中出现错误。

4

1 回答 1

0

嘿,我有同样的问题,

未为 Mail 类型定义方法 setTo(String[])

只要确保在您的项目文件夹中有activation.jar,additionnal.jarmail.jar文件。JavaMail Api/libs

于 2014-03-26T18:27:39.030 回答