如何导入javax.mail.session?

发布于 2024-11-25 01:26:45 字数 104 浏览 0 评论 0原文

我正在尝试使用 java 连接 SMTP。 我已在程序中包含 mail.jar,但无法导入 javamail.session。

请给我一些想法来获取它。

提前致谢

I am trying to connect SMTP using java.
I have included mail.jar in my program but I am not able to import javamail.session.

plz give me some idea hw to get it .

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光磨忆 2024-12-02 01:26:45

“包含在我的计划中”可以有多种解释。您需要将邮件 jar 放在您的 类路径 当你编译程序和运行程序时。提供一些更详细的信息、错误信息等,我们可以给您更好的答复。

"Included in my program" can be interpreted many ways. You need to have the mail jar on your classpath both when you compile the program and when you run it. Provide some more detail, error messages, etc., and we can give you a better answer.

难如初 2024-12-02 01:26:45

您不能只是创建新的会话...而是您需要:

Properties lProperties = ...// see pop3 properties - java help
Session lSession = Session.getInstance(lProperties);
Store lStore = lSession.getStore("pop3");

除此之外,您可能想要一一导入(而不是所有类),这可能指向丢失的类、路径、jar...

You can not just create new Session... but rather you will need to:

Properties lProperties = ...// see pop3 properties - java help
Session lSession = Session.getInstance(lProperties);
Store lStore = lSession.getStore("pop3");

Besides that you might want to import one by one (rather then all classes) and that might point to the missing class, path, jar...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文