zoukankan      html  css  js  c++  java
  • [转]使用 google gson 转换Timestamp或Date类型为JSON字符串.

    创建类型适配类:

    import java.lang.reflect.Type;  
    import java.sql.Timestamp;  
    import java.text.DateFormat;  
    import java.text.ParseException;  
    import java.text.SimpleDateFormat;  
    import java.util.Date;  
      
    import com.google.gson.JsonDeserializationContext;  
    import com.google.gson.JsonDeserializer;  
    import com.google.gson.JsonElement;  
    import com.google.gson.JsonParseException;  
    import com.google.gson.JsonPrimitive;  
    import com.google.gson.JsonSerializationContext;  
    import com.google.gson.JsonSerializer;  
      
    public class TimestampTypeAdapter implements JsonSerializer<Timestamp>, JsonDeserializer<Timestamp>{  
        private final DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
        public JsonElement serialize(Timestamp src, Type arg1, JsonSerializationContext arg2) {  
            String dateFormatAsString = format.format(new Date(src.getTime()));  
            return new JsonPrimitive(dateFormatAsString);  
        }  
      
        public Timestamp deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {  
            if (!(json instanceof JsonPrimitive)) {  
                throw new JsonParseException("The date should be a string value");  
            }  
      
            try {  
                Date date = format.parse(json.getAsString());  
                return new Timestamp(date.getTime());  
            } catch (ParseException e) {  
                throw new JsonParseException(e);  
            }  
        }  
      
    }  
    

     

      类型适配类

       应用类型适配器 写道

    Gson gson = new GsonBuilder().registerTypeAdapter(Timestamp.class,new TimestampTypeAdapter()).setDateFormat("yyyy-MM-dd HH:mm:ss").create();
    String jsonString = gson.toJson(resourceInfo,ResourceGeoInfo.class);
    

       输出结果

    {"positionTime":"2010-01-07 10:57:27"}
    

    Date 类型的时间转换第二种方式;  

    Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();  
    String jsonString = gson.toJson(new Date(System.currentTimeMillis()),Date.class);  
    System.out.println(jsonString);  
    

     输出结果: 

    "2010-01-07 12:24:34"
    

      

     

  • 相关阅读:
    窗体1打开窗体2的方法
    C#中窗体间传递数据的几种方法(转载)
    只读字段和常量
    Datepicker控件
    .NET中的加密和解密
    ASP.NET网页生命周期事件
    hdu 1394 Minimum Inversion Number(逆序数对) : 树状数组 O(nlogn)
    我的第一次博客
    弹性布局
    HTML标签部分(块级/行级)
  • 原文地址:https://www.cnblogs.com/goyier/p/4675357.html
Copyright © 2011-2022 走看看