Serializing.md

February 19, 2015 ยท View on GitHub

##Serializing JSON

LoganSquare can serialize objects to an OutputStream or a String. Here's a sample:

    // Serialize it to an OutputStream
    OutputStream os = ...;
    LoganSquare.serialize(image, os);
    
    // Serialize it to a String
    String jsonString = LoganSquare.serialize(image);