FileOutputStream os = null;
try {
os = VCardTest.this.openFileOutput("Android.vcf", MODE_PRIVATE);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
OutputStreamWriter writer;
try {
writer = new OutputStreamWriter(
os);
VCardComposer composer = new VCardComposer();
//create a contact
ContactStruct contact1 = new ContactStruct();
contact1.name = "Neo";
contact1.company = "The Company";
contact1.addPhone(Contacts.Phones.TYPE_MOBILE, "+123456789", null, true);
//create vCard representation
String vcardString;
vcardString = composer.createVCard(contact1, VCardComposer.VERSION_VCARD30_INT);
//write vCard to the output stream
writer.write(vcardString);
writer.write("/n"); //add empty lines between contacts
// repeat for other contacts
// ...
writer.close();
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (VCardException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. 学习JavaScript承诺只需要一些方向
  2. 带有换行符的文本区域的数据
  3. 根据下拉菜单的选择更改div的内容
  4. 正则表达式匹配所有字符到某个标记
  5. javascript中的属性类型
  6. [javascript 实践篇]——那些你不知道的
  7. 如何测试从实时网站提取数据的AJAX应用程
  8. Objective-C方法/函数调用。 (来自javascr
  9. Javascript函数的4种调用方法详解
  10. React.js中的setState vs replaceState