我正在寻找一种方法,我的应用程序可以调用用户的标准邮件应用程序(例如Outlook,Thunderbird等)。并给它一个收件人地址,电子邮件文本和附件。
所以,基本上标准的电子邮件应用程序应该弹出我的电子邮件(收件人,文本和附件),剩下的就是在我的Outlook,thunderbird等中按“发送”。
我一直在谷歌搜索一段时间,但我找不到真正的解决方案。
我一直在研究mapi,但似乎是1.它被弃用了2.它主要是为了展望而建。
非常感谢任何帮助/建议/解决方案!
修改:我看到问题Start Mail-Client with Attachment,但没有正常工作的答案,并且问题已超过3年。
编辑:其他语言也可以。必须使用Windows XP,Vista,7,8(32位和64位)
更新:这似乎比我想象的要困难。
我一直在研究JMAPI,它显然只适用于32位系统
我也在codeproject.org(here和here)上看到过这些解决方案,但我无法让它们发挥作用。
现在,我正在尝试使用命令行:
1.阅读用户的默认邮件客户端
2.根据电子邮件客户端调用批处理文件。 (是的,您必须为每个常见的邮件客户端编写批处理文件
展望的例子:
"outlook.exe" /a "F:\test.png" /m "test.test@test.test&cc=test@test.test&subject=subject123&body=Hello, how are you%%3F%%0D%%0Anew line"
- >有关该方法的更多信息,请参阅我提供的答案
答案 0 :(得分:2)
因此...
经过几天的研究,我放弃了获得一般解决方案。 我想出了一个至少为两个最常见的客户(Thunderbird& Outlook)工作的解决方案
我的解决方案基本上是从命令行调用应用程序。
对于那些感兴趣的人,这是我的解决方案:(我没有测试它跨平台 - 虽然在我的旧XP笔记本电脑上工作)
import java.io.IOException;
/*
:: Punctuation Hexadecimal equivalent
:: ----------------------------------------------
:: Space ( ) %20
:: Comma (,) %2C
:: Question mark (?) %3F
:: Period (.) %2E
:: Exclamation point (!) %21
:: Colon (:) %3A
:: Semicolon (;) %3B
:: Line feed %0A --> New line %0D%0A
:: Line break (ENTER key) %0D --> New line %0D%0A
*/
public class Main {
static String test = "hi";
private static String attachment;
private static String to;
private static String cc;
private static String subject;
private static String body;
public static void main (String[] args){
attachment = "F:\\pietquest.png";
to = "test@test.de";
cc = "a.b@c.de";
subject = "TestSubject 123";
body = "Hi, what\'s going on%0D%0Anew line";
body = replace(body);
subject = replace(subject);
String[] value = WindowsRegistry.readRegistry("HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail", "");
if (value[10].contains("Thunderbird")){
System.out.println("Thunderbird");
String[] pfad = WindowsRegistry.readRegistry("HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Mozilla Thunderbird\\shell\\open\\command", "");
String Pfad = pfad[10] + " " + pfad[11];
String argument = Pfad + " /compose \"to=" + to + ",cc=" + cc + ",subject=" + subject + ",body=" + body + ",attachment=" + attachment + "\"";
// System.out.println(argument);
try {
Runtime.getRuntime().exec(argument);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
else if (value[10].contains("Outlook")){
System.out.println("Outlook");
String[] pfad = WindowsRegistry.readRegistry(
"HKEY_LOCAL_MACHINE\\SOFTWARE\\Clients\\Mail\\Microsoft Outlook\\shell\\open\\command", "");
String Pfad = pfad[10];
String argument = Pfad + " /a " + attachment + " /m \"" + to
+ "&cc=" + cc + "&subject=" + subject + "&body=" + body + "\"";
// System.out.println(argument);
try {
Runtime.getRuntime().exec(argument);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public static String replace(String toReplace){
toReplace = toReplace.replace(" ", "%20");
toReplace = toReplace.replace(",", "%2C");
toReplace = toReplace.replace("?", "%3F");
toReplace = toReplace.replace(".", "%2E");
toReplace = toReplace.replace("!", "%21");
toReplace = toReplace.replace(":", "%3A");
toReplace = toReplace.replace(";", "%3B");
return toReplace;
}
}
这是Windows注册表类:(来自here)
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
public class WindowsRegistry {
/**
*
* @param location path in the registry
* @param key registry key
* @return registry value or null if not found
*/
public static final String[] readRegistry(String location, String key){
try {
// Run reg query, then read output with StreamReader (internal class)
Process process = Runtime.getRuntime().exec("reg query " +
'"'+ location);
StreamReader reader = new StreamReader(process.getInputStream());
reader.start();
process.waitFor();
reader.join();
// Parse out the value
String[] parsed = reader.getResult().split("\\s+");
if (parsed.length > 1) {
return parsed;
}
} catch (Exception e) {}
return null;
}
static class StreamReader extends Thread {
private InputStream is;
private StringWriter sw= new StringWriter();
public StreamReader(InputStream is) {
this.is = is;
}
public void run() {
try {
int c;
while ((c = is.read()) != -1)
sw.write(c);
} catch (IOException e) {
}
}
public String getResult() {
return sw.toString();
}
}
答案 1 :(得分:0)