【问题标题】:Avalara: What is a "DateTime" valid format for the json date?Avalara:json 日期的“DateTime”有效格式是什么?
【发布时间】:2019-10-01 18:33:33
【问题描述】:

Avalara 的正确 JSON 日期格式是什么?以下代码:

 TransactionModel transaction = new TransactionBuilder(client, "COMPANY", DocumentType.SalesOrder, "myCompany.")
    .withDate(Calendar.getInstance().getTime())
    .withAddress(TransactionAddressType.SingleLocation, null, null, null, null, null, zipCode, "US")
    .withLine( new BigDecimal(100.0), new BigDecimal(1), "P0000000")
    .Create();

抛出一个不表示正确格式的异常:

com.google.gson.JsonSyntaxException: 2019-10-01
    at com.google.gson.DefaultDateTypeAdapter.deserializeToDate(DefaultDateTypeAdapter.java:107)
    at com.google.gson.DefaultDateTypeAdapter.deserialize(DefaultDateTypeAdapter.java:82)
    at com.google.gson.DefaultDateTypeAdapter.deserialize(DefaultDateTypeAdapter.java:35)
    at com.google.gson.TreeTypeAdapter.read(TreeTypeAdapter.java:58)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$1.read(ReflectiveTypeAdapterFactory.java:93)
    at com.google.gson.internal.bind.ReflectiveTypeAdapterFactory$Adapter.read(ReflectiveTypeAdapterFactory.java:172)
    at com.google.gson.Gson.fromJson(Gson.java:803)
    at com.google.gson.Gson.fromJson(Gson.java:768)
    at com.google.gson.Gson.fromJson(Gson.java:717)
    at net.avalara.avatax.rest.client.serializer.JsonSerializer.DeserializeObject(JsonSerializer.java:15)
    at net.avalara.avatax.rest.client.RestCall.call(RestCall.java:99)
    at net.avalara.avatax.rest.client.AvaTaxClient.createTransaction(AvaTaxClient.java:19174)
    at net.avalara.avatax.rest.client.TransactionBuilder.Create(TransactionBuilder.java:425)

【问题讨论】:

    标签: java json avalara


    【解决方案1】:

    如有疑问,请阅读来源。 看起来com.google.gson.DefaultDateTypeAdapter 有几个默认日期格式,它将尝试在deserializeToDate 中使用。因此,请确保您使用的是其中之一。

    大多数日期格式来自java.text.DateFormat

    还要检查AvaTax-REST-V2的来源

    如果您在编辑器中链接了源代码,那么我建议在堆栈跟踪中的几个位置放置一个断点以查看发生了什么。当然,deserializeToDate 是一位不错的候选人。


    DefaultDateTypeAdapter.java

    /**
     * List of 1 or more different date formats used for de-serialization attempts. The first of them is
     * used for serialization as well.
     */
    private final List<DateFormat> dateFormats = new ArrayList<DateFormat>();
    
    DefaultDateTypeAdapter(Class<? extends Date> dateType) {
        this.dateType = verifyDateType(dateType);
        dateFormats.add(DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, Locale.US));
        if (!Locale.getDefault().equals(Locale.US)) {
            dateFormats.add(DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT));
        }
        if (JavaVersion.isJava9OrLater()) {
            dateFormats.add(PreJava9DateFormatProvider.getUSDateTimeFormat(DateFormat.DEFAULT, DateFormat.DEFAULT));
        }
    }
    
    DefaultDateTypeAdapter(Class<? extends Date> dateType, String datePattern) {
        this.dateType = verifyDateType(dateType);
        dateFormats.add(new SimpleDateFormat(datePattern, Locale.US));
        if (!Locale.getDefault().equals(Locale.US)) {
            dateFormats.add(new SimpleDateFormat(datePattern));
        }
    }
    
    DefaultDateTypeAdapter(Class<? extends Date> dateType, int style) {
        this.dateType = verifyDateType(dateType);
        dateFormats.add(DateFormat.getDateInstance(style, Locale.US));
        if (!Locale.getDefault().equals(Locale.US)) {
            dateFormats.add(DateFormat.getDateInstance(style));
        }
        if (JavaVersion.isJava9OrLater()) {
            dateFormats.add(PreJava9DateFormatProvider.getUSDateFormat(style));
        }
    }
    
    public DefaultDateTypeAdapter(int dateStyle, int timeStyle) {
        this(Date.class, dateStyle, timeStyle);
    }
    
    public DefaultDateTypeAdapter(Class<? extends Date> dateType, int dateStyle, int timeStyle) {
        this.dateType = verifyDateType(dateType);
        dateFormats.add(DateFormat.getDateTimeInstance(dateStyle, timeStyle, Locale.US));
        if (!Locale.getDefault().equals(Locale.US)) {
            dateFormats.add(DateFormat.getDateTimeInstance(dateStyle, timeStyle));
        }
        if (JavaVersion.isJava9OrLater()) {
            dateFormats.add(PreJava9DateFormatProvider.getUSDateTimeFormat(dateStyle, timeStyle));
        }
    }
    

    【讨论】:

      【解决方案2】:

      对于其他在这里找到自己方式的人,Avalara 开发者论坛上提供了更完整的讨论: https://community.avalara.com/avalara/topics/error-parsing-date-jre-sdk

      简短回答: 升级你对 gson 的依赖,你的代码没有问题。我移到了更新的版本,错误已得到修复:

      <dependency>
          <groupId>com.google.code.gson</groupId>
          <artifactId>gson</artifactId>
          <version>2.8.5</version>
      </dependency>
      

      【讨论】:

        猜你喜欢
        • 2019-07-22
        • 1970-01-01
        • 2015-09-01
        • 1970-01-01
        • 2018-09-19
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2012-04-01
        相关资源
        最近更新 更多