I have a program that will receive the information displayed in it with a .plist on my server. However, I am going to do this for the PC, and I use Java for this. Plist files are not regular XML, so regular XML parsing libraries do not work. I cannot find any specific parsers, so I am lost in how to proceed. As I can see, my options are:
a) Find such a parser for the plist file
b) Make a workaround using a regular XML parser
c) Change the file from which the program receives its data (undesirable)
Does anyone else have experience working with languages in languages other than Objective-C?
source
share