本文介绍了如何获得Android中从plist中值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
目前我公司在Android应用程序的工作,使用的plist存储在资源文件夹一些值,然后我得到的资源在Android上的本地plist中值,但我不能得到这些,如何在Android的解析当地的plist价值?
请大家帮我
感谢
在这里,我这里提到的plist值
<?XML版本=1.0编码=UTF-8&GT?;
<阵列GT;
<&字典GT;
<密钥GT; code< /键>
<串GT; 11 LT; /串>
<密钥GT;国家< /键>
<串GT;与阿富汗LT; /串>
< /字典>
<&字典GT;
<密钥GT; code< /键>
<串GT; 12213< /串>
<密钥GT;国家< /键>
<串GT;奥兰群岛< /串>
< /字典>
<&字典GT;
<密钥GT; code< /键>
<串GT; 24144< /串>
<密钥GT;国家< /键>
<串GT;阿尔巴尼亚< /串>
< /字典>
<&字典GT;
<密钥GT; code< /键>
<串GT; 35223434< /串>
<密钥GT;国家< /键>
<串GT;阿尔及利亚< /串>
< /字典>
< /阵列>
解决方案
检查:
Currently i am working in Android application, Using plist to store some values in Resource folder, then i get the local plist value from Resource in Android, but i cannot get these, How to parse local plist value in Android? please help me
Thanks
Here i mentioned Plist value here
<?xml version="1.0" encoding="UTF-8"?>
<array>
<dict>
<key>Code</key>
<string>11</string>
<key>Country</key>
<string>Afghanistan</string>
</dict>
<dict>
<key>Code</key>
<string>12213</string>
<key>Country</key>
<string>Aland Islands</string>
</dict>
<dict>
<key>Code</key>
<string>24144</string>
<key>Country</key>
<string>Albania</string>
</dict>
<dict>
<key>Code</key>
<string>35223434</string>
<key>Country</key>
<string>Algeria</string>
</dict>
</array>
解决方案
Check this: Android PList Parser
这篇关于如何获得Android中从plist中值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!