简体   繁体   中英

error: package javax.mail does not exist

I want to run a java program to send emails but I am getting the following errors:

SSLEmail.java:4: error: package javax.mail does not exist
import javax.mail.Authenticator;
             ^
SSLEmail.java:5: error: package javax.mail does not exist
import javax.mail.PasswordAuthentication;
             ^
SSLEmail.java:6: error: package javax.mail does not exist
import javax.mail.Session;
             ^

I downloaded the javax.mail package and changed the path in environment variables,but still getting the same error..

Someone kindly help where I might be wrong with . thanks in advance for any help..

you miss javax.mail.jar in your classpath. Download and add it.

javac -cp "C:\Program Files (x86)\Java\jre7\javamail-1.4.7\mail.jar" SSLEmail.java 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM