Android知识

手动将iPhone短信导入Android手机方法

2016-12-08  本文已影响0人  ly93

目前换机软件和pc助手暂不支持iphone的短信转移到android手机,而且android6.0不支持csv导入,所以手动进行导入导出。

步骤:


1、使用itools或pp助手等工具将iphone的短信导出为csv文件

2、csv转码为xml

3、应用宝xml文件与在线导出xml格式对比

<?xml version="1.0" encoding="UTF-8"?>
<SMSRecord>
<SMS>
<Type>2</Type>
<Status>-522067796</Status>
<IsRead>1</IsRead>
<Address>10010</Address>
<Date>2013-02-15 00:17:10</Date>
<Subject></Subject>
<Body>短信内容</Body>
</SMS>
</SMSRecord>
<?xml version="1.0" encoding="UTF-8"?>
<rows>
<row>
<PhoneNumber>\t+861065510198</PhoneNumber>
<DateCreated>2016-08-07 09:49:41</DateCreated>
<Content>短信内容</Content>
<Type>recv</Type>
<State>unread</State>
</row>
</rows>

4、用sublime打开刚才的转换好的xml文件参照上图应用宝的xml格式进行修改:

操作 修改前 修改后
替换 <rows></rows> <SMSRecord></SMSRecord>
替换 <row></row> <SMS></SMS>
替换 <PhoneNumber></PhoneNumber> <Address></Address>
替换 <DateCreated></DateCreated> <Date></Date>
替换 <State>read</State> <IsRead>1</IsRead>
替换 <State>unread</State> <IsRead>2</IsRead>
替换 <Content>短信内容</Content> <Body>短信内容</Body>
替换 <Type>recv</Type> <Type>1</Type>
替换 <Type>send</Type> <Type>2</Type>
添加 <Subject></Subject>
添加 <Status>-522067796</Status>
删除 \t
删除(可选) +86

5、替换完成

<?xml version="1.0" encoding="UTF-8"?>
<SMSRecord>
<SMS>
<Address>1065510198</Address>
<Date>2016-08-07 09:49:41</Date>
<Body>短信内容</Body>
<Type>1</Type>
<IsRead>2</IsRead>
<Subject></Subject>
<Status>-522067796</Status>   
</SMS>
</SMSRecord>

!!导入失败的解决办法:

1、手机号后带联系人姓名

2、联系人为邮箱

3、格式错误

上一篇下一篇

猜你喜欢

热点阅读