简体   繁体   中英

Parse Apple Plist files in android

I have onle application in which i have to parse plist files. I dont found any usefull link for that I have following plist file.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com        
 /DTDs/PropertyList-1.0.dtd">

<plist version="1.0">

<dict>
<key>About The Firm</key>
<array>
    <string>Firm Details</string>
    <string>Verdicts</string>
    <string>Read Our Disclaimer</string>
</array>
<key>Attorneys</key>
<array>
    <string>Jerrold S. Parker</string>
    <string>Herbert L. Waichman</string>
    <string>Andres F. Alonso</string>
    <string>Jordan L. Chaikin</string>
    <string>Raymond C. Silverman</string>
    <string>Brett A. Zekowski</string>
    <string>Fred R. Rosenthal</string>
    <string>David B. Krangle</string>
    <string>Douglas A. Kugal</string>
    <string>Melanie H. Muhlstock</string>
    <string>Herman Badillo</string>
    <string>Jay L. T. Breakstone</string>
    <string>Michael R. Bluman</string>
    <string>Daniel C. Burke</string>
    <string>Peter J. Cambs</string>
    <string>Gary P. Falkowitz</string>
    <string>April S. Goodwin</string>
    <string>Michael Hugo</string>
    <string>James G. Kapralos</string>
    <string>Christina J. Kazepis</string>
    <string>Brett R. Leitner</string>
    <string>Matthew J. McCauley</string>
    <string>Allan M. Silverstein</string>
    <string>Lauren B. Sutton</string>
    <string>Justin Varughese</string>
</array>
<key>Disclaimer</key>
<array>
    <string>Read Our Disclaimer</string>
</array>
<key>Practice Areas</key>
<array>
    <string>Auto Accidents</string>
    <string>Defective Drugs</string>
    <string>Defective Medical Device</string>
    <string>Nursing Home Abuse</string>
</array>

Please give me some solution for that

Use SAXParser to parse it as xml. You should be able to find good tutorials for that.

If you still need it. Maybe you can use Android PList Parser , is Sax-Based.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM