Hello,
I try to generate an Outlook vCard from my java applicaton.
Everything works fine but the picture doesn't wants to appear on my Outlook vCard.
I tried with the this code, but without any success:
String vCard = "BEGIN:VCARD\n"
+ "VERSION:2.1\n"
+ "N:" + name + "\n"
+ "FN:" + firstname + "\n"
+ "TEL;WORK;VOICE:" + phonenumber + "\n"
+ "ADR;WORK:;" + address + "\n"
+ "EMAIL;PREF;INTERNET:" + email + "\n"
+ "PHOTO;VALUE=uri: + "END:VCARD\n";
Can somebody tell me what I'm doing wrong?
May the Outlook 2003 can't show any picture what was generiert from java?
Please advise me...
Thank you in advance!
I try to generate an Outlook vCard from my java applicaton.
Everything works fine but the picture doesn't wants to appear on my Outlook vCard.
I tried with the this code, but without any success:
String vCard = "BEGIN:VCARD\n"
+ "VERSION:2.1\n"
+ "N:" + name + "\n"
+ "FN:" + firstname + "\n"
+ "TEL;WORK;VOICE:" + phonenumber + "\n"
+ "ADR;WORK:;" + address + "\n"
+ "EMAIL;PREF;INTERNET:" + email + "\n"
+ "PHOTO;VALUE=uri: + "END:VCARD\n";
Can somebody tell me what I'm doing wrong?
May the Outlook 2003 can't show any picture what was generiert from java?
Please advise me...
Thank you in advance!