java Gson使用中遇到的Date格式問題

閃耀的瞬間發表於2014-12-20

為了避免使用Gson時遇到locale影響Date格式的問題,使用GsonBuilder來建立Gson物件,在建立過程中呼叫GsonBuilder.setDateFormat(String)指定一個固定的格式即可。例如:

Gson gson = new GsonBuilder()

  .setDateFormat("yyyy-MM-dd HH:mm:ss")
  .create();

相關文章