gpt4 book ai didi

java - 电子邮件 Java 附件

转载 作者:行者123 更新时间:2023-12-01 05:14:43 25 4
gpt4 key购买 nike

我编写了一段代码,以便能够启动默认的电子邮件服务提供商,即我的 Outlook。这是我的代码:

if(role.getValue().equals("1")) {

Desktop desktop = Desktop.getDesktop();
String message = "mailto:username@domain.com?subject=New_Profile&body=NewProfile";

try {
desktop.mail(uri);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

我正在尝试自动将某些内容附加到电子邮件中,但它不起作用。相反,是否可以从我的程序中的输入字段检索一些数据并自动将该数据作为正文添加到电子邮件中?

我尝试以某种方式嵌入语句,但它不起作用。有人可以建议一下吗?

Desktop desktop = Desktop.getDesktop();
String message = "mailto:username@domain.com?subject=New_Profile&body=person.getPdfName()";

为什么上面的代码没有执行任何操作? person.getPdfName() 是否放错了位置?

最佳答案

看看这些答案,不确定它们是否能解决您的问题,但它们确实给出了一个很好的描述,说明为什么它不那么简单。并非所有电子邮件客户端都支持这种方式的附件。

Start Mail-Client with Attachment?

How to open an email client and automatically attach file in java

http://forums.devshed.com/windows-help-34/defaut-mail-client-with-attachment-on-xp-71305.html

关于java - 电子邮件 Java 附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11434094/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com