Android使用vcard文件的方法简单实例
Android使用vcard文件的方法简单实例
发布时间:2016-12-28 来源:查字典编辑
摘要:本文实例讲述了Android使用vcard文件的方法。分享给大家供大家参考,具体如下:FileOutputStreamos=null;try...

本文实例讲述了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(); }

希望本文所述对大家Android程序设计有所帮助。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新安卓软件开发学习
热门安卓软件开发学习
编程开发子分类