Android 无法解析方法会话。getDefaultInstance()

Android 无法解析方法会话。getDefaultInstance(),android,jakarta-mail,Android,Jakarta Mail,我正在尝试编写自动邮件发送代码。这里,我得到一个错误:无法解析此行中的方法“getDefaultInstance(java.util.Properties,com.example.automailsendinganika.Sender)”:session=session.getDefaultInstance(props,this) 这是我的发件人类: 我刚刚遇到了问题。我曾经 导入android.se.omapi.Session 而不是 “导入javax.mail.Session;” 尝试使用

我正在尝试编写自动邮件发送代码。这里,我得到一个错误:无法解析此行中的方法“getDefaultInstance(java.util.Properties,com.example.automailsendinganika.Sender)”:session=session.getDefaultInstance(props,this)

这是我的发件人类:



我刚刚遇到了问题。我曾经

导入android.se.omapi.Session
而不是
“导入javax.mail.Session;”

尝试使用“Session.getInstance(props,this);”而不是您正在使用的内容。默认实例与此不同。我尝试了“Session.getInstance(props,this);”但仍然出现了错误。错误是:无法解析方法“getInstance(java.util.Properties,com.example.automailsendinganika.Sender)”
class Sender  extends javax.mail.Authenticator {

    private String mailhost = "smtp.gmail.com";
    private String user;
    private String password;
    private Session session;

    static {
        Security.addProvider(new com.provider.JSSEProvider());
    }

    public Sender(String user, String password) {
        this.user = user;
        this.password = password;

        Properties props = new Properties();
        props.setProperty("mail.transport.protocol", "smtp");
        props.setProperty("mail.host", mailhost);
        props.put("mail.smtp.auth", "true");
        props.put("mail.smtp.port", "465");
        props.put("mail.smtp.socketFactory.port", "465");
        props.put("mail.smtp.socketFactory.class",
                "javax.net.ssl.SSLSocketFactory");
        props.put("mail.smtp.socketFactory.fallback", "false");
        props.setProperty("mail.smtp.quitwait", "false");

        session = Session.getDefaultInstance(props, this);
    }

    protected PasswordAuthentication getPasswordAuthentication() {
        return new PasswordAuthentication(user, password);
    }

    public synchronized void sendMail(String subject, String body, String sender, String recipients) throws Exception {
        try{
            MimeMessage message = new MimeMessage(session);
            DataHandler handler = new DataHandler(new ByteArrayDataSource(body.getBytes(), "text/plain"));
            message.setSender(new InternetAddress(sender));
            message.setSubject(subject);
            message.setDataHandler(handler);
            if (recipients.indexOf(',') > 0)
                message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(recipients));
            else
                message.setRecipient(Message.RecipientType.TO, new InternetAddress(recipients));
            Transport.send(message);
            Log.e("SEND ","SEND");
        }catch(Exception e){
            Log.e("ERROR ","ERROR");
            e.printStackTrace();
        }
    }

    public class ByteArrayDataSource implements DataSource {
        private byte[] data;
        private String type;

        public ByteArrayDataSource(byte[] data, String type) {
            super();
            this.data = data;
            this.type = type;
        }

        public ByteArrayDataSource(byte[] data) {
            super();
            this.data = data;
        }

        public void setType(String type) {
            this.type = type;
        }

        public String getContentType() {
            if (type == null)
                return "application/octet-stream";
            else
                return type;
        }

        public InputStream getInputStream() throws IOException {
            return new ByteArrayInputStream(data);
        }

        public String getName() {
            return "ByteArrayDataSource";
        }

        public OutputStream getOutputStream() throws IOException {
            throw new IOException("Not Supported");
        }
    }
}