我编写了一个代码,以便能够启动默认的电子邮件服务提供商,这对我来说是 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() 放错地方了吗?