⭐ Disclaimer: This is a fork of 3breadt/dd-plist that supports seriaization annotations and a few fixes. It is behind the mainline, however it works and it is stable enough, and I'm using it in my product for more than 2 years now.
This library enables your Java application to handle property lists of various formats. It is licensed under the terms of the MIT license.
Property lists are files used to store user settings and serialized objects. They originate from the NeXSTEP programming environment and are now a basic part of the Cocoa framework (OS X and iOS) as well as the GNUstep framework.
- Read / write property lists from / to files, streams or byte arrays
- Convert between property list formats
- Property list contents are provided as objects from the NeXTSTEP environment (NSDictionary, NSArray, NSString, etc.)
- Serialize native java data structures to property list objects
- Deserialize from property list objects to native java data structures
- Cocoa XML
- Cocoa Binary (v0)
- Cocoa / NeXSTSTEP / GNUstep ASCII
If you use Maven and want to include the library into your project you can use the following dependency.
<dependency>
<groupId>com.googlecode.plist</groupId>
<artifactId>dd-plist</artifactId>
<version>1.23</version>
</dependency>
The API documentation is included in the download but can also be browsed online: JavaDoc for com.dd.plist.
If you have further questions please post them on the GitHub issue tracker or in the Discussion forum plist-discuss on Google Groups.
Parsing can be done with the PropertyListParser class. You can feed the PropertyListParser with a File, an InputStream or a byte array.
The parse method of the PropertyListParser will parse the input and give you a NSObject as result. Generally this is a NSDictionary but it can also be a NSArray.
Note: Property lists created by NSKeyedArchiver are not yet supported
You can then navigate the contents of the property lists using the various classes extending NSObject. These are modeled in such a way as to closely resemble the respective Cocoa classes.
You can also directly convert the contained NSObject objects into native Java objects with the NSObject.toJavaObject() method. Using this method you can avoid working with NSObject instances altogether.
You can create your own property list using the various constructors of the different NSObject classes. Or you can wrap existing native Java structures with the method NSObject.wrap(Object o). Just make sure that the root object of the property list is either a NSDictionary (can be created from objects of the type Map<String, Object>) or a NSArray (can be created from object arrays).
For building a XML property list you can then call the toXMLPropertyList method on the root object of your property list. It will give you a UTF-8 String containing the property list in XML format. You may omit the plist root and XML headers using the toXMLPropertyList(false) method parameter.
If you want to have the property list in binary format use the BinaryPropertyListWriter class. It can write the binary property list directly to a file or to an OutputStream.
When you directly want to save your property list to a file, you can also use the saveAsXML or saveAsBinary methods of the PropertyListParser class.
For converting a file into another format there exist convenience methods in the PropertyListParser class: convertToXML, convertToBinary, convertToASCII and convertToGnuStepASCII.
You may customize how Plain Old Java Objects (POJO) are serialized using the following annotations.
- Specify
@PlistOptionsat the top of a class to denote that annotations will be used. Use@PlistOptions(upperCamelCase = true)to specify that all fields should be serialized in upper camel-case mode, i.e., first letter is always an upper case letter. - Use
@PlistIgnoreon a class field to omit it from serialization. Alternatively you may use thetransientfield modifier. - Use
@PlistAliason a class field to specify the serialized name of a field. - Use
@PlistIncludeon a class or field to specify how empty ornullfield values should be serialized.
try {
File file = new File("Info.plist");
NSDictionary rootDict = (NSDictionary)PropertyListParser.parse(file);
String name = rootDict.objectForKey("Name").toString();
NSObject[] parameters = ((NSArray)rootDict.objectForKey("Parameters")).getArray();
for(NSObject param:parameters) {
if(param.getClass().equals(NSNumber.class)) {
NSNumber num = (NSNumber)param;
switch(num.type()) {
case NSNumber.BOOLEAN : {
boolean bool = num.boolValue();
//...
break;
}
case NSNumber.INTEGER : {
long l = num.longValue();
//or int i = num.intValue();
//...
break;
}
case NSNumber.REAL : {
double d = num.doubleValue();
//...
break;
}
}
}
// else...
}
} catch(Exception ex) {
ex.printStackTrace();
}Put your property list files into the project folder res/raw to mark them as resource files. Then you can create an InputStream for that resource and pass it to the PropertyListParser.
In this example your property list file is called properties.plist.
try {
InputStream is = getResources().openRawResource(R.raw.properties);
NSDictionary rootDict = (NSDictionary)PropertyListParser.parse(is);
//Continue parsing...
} catch(Exception ex) {
//Handle exceptions...
} //Creating the root object
NSDictionary root = new NSDictionary();
//Creation of an array of the length 2
NSArray people = new NSArray(2);
//Creation of the first object to be stored in the array
NSDictionary person1 = new NSDictionary();
//The NSDictionary will automatically wrap strings, numbers and dates in the respective NSObject subclasses
person1.put("Name", "Peter"); //This will become a NSString
//Use the Java Calendar class to get a Date object
Calendar cal = Calendar.getInstance();
cal.set(2011, 1, 13, 9, 28);
person1.put("RegistrationDate", cal.getTime()); //This will become a NSDate
person1.put("Age", 23); //This will become a NSNumber
person1.put("Photo", new NSData(new File("peter.jpg")));
//Creation of the second object to be stored in the array
NSDictionary person2 = new NSDictionary();
person2.put("Name", "Lisa");
person2.put("Age", 42);
person2.put("RegistrationDate", new NSDate("2010-09-23T12:32:42Z"));
person2.put("Photo", new NSData(new File("lisa.jpg")));
//Put the objects into the array
people.setValue(0, person1);
people.setValue(1, person2);
//Put the array into the property list
root.put("People", people);
//Save the propery list
PropertyListParser.saveAsXML(root, new File("people.plist")); @PlistOptions(upperCamelCase = true)
public static class PayloadContent {
private boolean allowAllAppsAccess = false; // serialized as '<key>AllowAllAppsAccess</key>'
@PlistAlias("CAFingerprint")
private byte[] caFingerprint = new byte[]{}; // serialized as '<key>CAFingerprint</key>'
@PlistAlias("Key Type")
private String keyType = "RSA"; // serialized as '<key>Key Type</key>'
@PlistIgnore
private String ignored = "ignored"; // will not be serialized
private transient String ignored2 = "ignored2"; // will not be serialized
@PlistInclude(PlistInclude.Include.NON_EMPTY)
private String emptyText = ""; // will not be serialized
@PlistInclude(PlistInclude.Include.NON_EMPTY)
private byte[] emptyArray = new byte[]{}; // will not be serialized
private byte[] emptyArrayIncluded = new byte[]{}; // serialized as '<key>EmptyArrayIncluded</key>'
@PlistInclude(PlistInclude.Include.NON_NULL)
private Integer nullInt = null; // will not be serialized
@PlistInclude(PlistInclude.Include.NON_DEFAULT)
private int value = 42; // will not be serialized unless changed to something other than 42