how can i call the OutLook mail to frame

Hi All,

Please help me,

I'm calling the outlook by using the code

Process p= Runtime.getRuntime().exec(new String[]{"c:\\program files\\outlook express\\msimn.exe",""});

But what my problem is :

i need mailto frame of outlook.

please can any one give the solution

Thanks......

[326 byte] By [p.v.k.ka] at [2007-10-3 6:03:03]
# 1
That call could be in some .dll file. No exe is provided to invoke mailto, if i'm not wrong.
FebTena at 2007-7-15 0:45:22 > top of Java-index,Java Essentials,Java Programming...
# 2
I found this code worked for me.Runtime.getRuntime().exec("cmd /c start mailto:emailaddress@spam.com?subject=Test&body=Hello");
FebTena at 2007-7-15 0:45:22 > top of Java-index,Java Essentials,Java Programming...
# 3
Can you tell me which dll i can use?and parameters of exec()Thanks..........
p.v.k.ka at 2007-7-15 0:45:22 > top of Java-index,Java Essentials,Java Programming...
# 4
Thank you very much FebTenI got it.
p.v.k.ka at 2007-7-15 0:45:22 > top of Java-index,Java Essentials,Java Programming...
# 5
JDIC, or Java 6 desktop.mail.Cross platform, and uses the default mail client.
mlka at 2007-7-15 0:45:22 > top of Java-index,Java Essentials,Java Programming...