Git Product home page Git Product logo

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on May 8, 2024

We plan to add a Default Date/Time serialization/deserialization in version 
1.2.  The
tricky thing about this feature is that we do not know the format that the 
client
supports.  If the system using the GSON library passes these JSON serialized 
object
back and forth and serializing/deserializing on both ends then its a non-issue 
for
which format is supported; however, if you used the serialized version for 
display
purposes then the date format matters.

For the time being, you can register the following Type Adapter:

/**
 * A default type adapter for a {@link Date} object.
 *
 * @author Joel Leitch
 */
public class DateTypeAdapter implements JsonSerializer<Date>, 
JsonDeserializer<Date> {

  private final DateFormat format = DateFormat.getInstance();

  public JsonElement serialize(Date src, Type typeOfSrc, JsonSerializationContext
context) {
    String dateFormatAsString = format.format(src);
    return new JsonPrimitive(dateFormatAsString);
  }

  public Date deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext
context)
      throws JsonParseException {
    if (!(json instanceof JsonPrimitive)) {
      throw new JsonParseException("The date should be a string value");
    }

    try {
      return format.parse(json.getAsString());
    } catch (ParseException e) {
      throw new JsonParseException(e);
    }
  }
}


// Create a GSON instance that can serialize/deserialize "java.util.Date" 
objects
Gson gson = new GsonBuilder()
    .registerTypeAdapter(new DateTypeAdapter())
    .create();

Original comment by [email protected] on 5 Aug 2008 at 6:41

  • Changed state: Accepted
  • Added labels: Type-Enhancement
  • Removed labels: Type-Defect

from gson.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 8, 2024
Submitted the type adapter to support this feature (r130).  Still need to 
update the
GsonBuilder class to make the Date TypeAdapter configurable without requiring 
the
adapter to be registered.

Original comment by [email protected] on 5 Aug 2008 at 7:30

from gson.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 8, 2024
The change r145 contains the last piece of code required to close off this bug. 
Removed the DateTypeAdapter from the public API so that it can only be 
configured via
the GsonBuilder.

Original comment by [email protected] on 13 Aug 2008 at 8:28

  • Changed state: Fixed

from gson.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.