zoukankan      html  css  js  c++  java
  • android 使用vcard示例

    写:

    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();

    }

    读:

  • 相关阅读:
    django 笔记4 数据库操作
    html关于不换行代码
    之前搭建的jenkins的一些笔记
    pip报错
    ssh 免密及加密远程脚本实现
    今天了解了些redis和memcached的知识
    django 笔记3
    来选择一款适合你网站的CMS建站程序吧
    如何预防和检测网页挂马?
    网页挂马方式
  • 原文地址:https://www.cnblogs.com/xyzlmn/p/3168242.html
Copyright © 2011-2022 走看看