xml转换成vcf 魅族手机通讯录Contact.xml备份在flyme上的恢复(Java/C#实现xml转vCard)
分类:杂谈| 发布:佚名| 查看:3286 | 发表时间:2014/6/10
由上一篇的备份M9数据到SD卡上,研究了一下才发现,之前备份了通讯录是在手机的Backup文件夹下,文件Contact/Contact.xml,而flyme不再支持Contact.xml的恢复。但是flyme支持vCard格式(*.vcf)导入。
对于一只程序猿来说,解决这个问题的方法必须是自己写程序。
于是研究了一下魅族通讯录备份文件Contact.xml和vCard(vcf)格式。
在线转换地址:xml转换vcf
Contact.xml:
01 | <? xml version = "1.0" encoding = "UTF-8" standalone = "yes" ?> |
04 | < SoftwareVersion >1.0.1</ SoftwareVersion > |
07 | < FirstName >郑州网建</ FirstName > |
08 | < DisplayName >郑州网建</ DisplayName > |
09 | < PhoneElement IsPrimary = "1" Value = "15100000000" Type = "0" /> |
13 | < FirstName >李四</ FirstName > |
14 | < DisplayName >李四</ DisplayName > |
15 | < PhoneElement IsPrimary = "1" Value = "15155555555" Type = "0" /> |
vCard:
Contact.xml转vcf文件(Java):
01 | public static void main(String[] args) throws DocumentException, IOException |
04 | SAXReader reader = new SAXReader(); |
05 | Document document = reader.read( new File( "H:\\Backup\\20130422200137M9\\Contact\\Contact.xml" )); |
06 | Element root = document.getRootElement(); |
08 | List<?> contacts = root.elements( "Contact" ); |
10 | StringBuilder sb = new StringBuilder(); |
12 | for (Object contactObj : contacts) |
14 | Element eleContact = (Element) contactObj; |
15 | String name = eleContact.elementText( "DisplayName" ); |
16 | String number = eleContact.element( "PhoneElement" ).attribute( "Value" ).getValue(); |
17 | sb.append( "BEGIN:VCARD\nVERSION:2.1\n" ); |
20 | sb.append( "\nTEL;CELL:" ); |
22 | sb.append( "\nEND:VCARD\n" ); |
25 | FileUtils.writeStringToFile( new File( "H:\\test.vcf" ), sb.toString(), "utf-8" ); |
上面的代码需要两个jar文件:dom4j-1.6.1.jar和commons-io-2.4.jar。
最后把生成的vcf文件拷贝到手机中,在手机中打开这个vcf文件,就可以恢复以前所有的联系人了。
由于vCard文件比较通用,所以上面的代码应该还能实现魅族的Contact.xml备份导入联系人到魅族MX或者其他各种支持vCard的手机中。
在线转换地址:xml转换vcf