In addition to the other answers presented here, I would like to look at the nature of the data you need in your plist file. If your plist file is just a flat NSDictionary of string values ββand not a structured value dictionary, then you have the option of using the Java Properties object:
Android Java Properties
Again, this will not help you if your requirements include the fully structured equivalent of plist files. But if you need a simple dictionary with key values ββstored in a text file, the java.util.Properties path is the path.
source share