用破碎的远程API解析json

时间:2017-12-02 15:42:23

标签: java json kotlin moshi jsonparser

这是我的模型类

data class Article( val id: Int? = 0, val is_local: Boolean? = false, val comments: List<Comment?>? = listOf())

这里是json

  {
    "id": 33,
    "is_local": "true",
    "comments":
         [
          { "url": "aaa" },

          { "url": "bbb" },

          { "url": "ccc" )

     ]

}

我正在使用此自定义适配器返回默认值以防解析错误,例如我的情况 is_local 字段

class DefaultOnDataMismatchAdapter<T> private constructor(private val delegate: 
   JsonAdapter<T>, private val defaultValue: T?) : JsonAdapter<T>() {

 @Throws(IOException::class)
  override fun fromJson(reader: JsonReader): T? =
        try {
            delegate.fromJsonValue(reader.readJsonValue())
        } catch (e: Exception) {
            println("Wrongful content - could not parse delegate " + 
delegate.toString())
            defaultValue
        }

@Throws(IOException::class)
override fun toJson(writer: JsonWriter, value: T?) {
    delegate.toJson(writer, value)
}

  companion object {
    @JvmStatic
    fun <T> newFactory(type: Class<T>, defaultValue: T?): 
    JsonAdapter.Factory {
        return object : JsonAdapter.Factory {
            override fun create(requestedType: Type, annotations: 
      Set<Annotation>, moshi: Moshi): JsonAdapter<*>? {
                if (type != requestedType) {
                    return null
                }
                val delegate = moshi.nextAdapter<T>(this, type, 
          annotations)
                return DefaultOnDataMismatchAdapter(delegate, 
     defaultValue)
             }

         }
      }
   }

}

并且我的测试失败并且布尔值不为假我已将上述适配器添加到moshi

@Before
fun createService() {

    val moshi = Moshi.Builder()


    .add(DefaultOnDataMismatchAdapter
                           .newFactory(Boolean::class.java,false))
            .add(KotlinJsonAdapterFactory())
            .build()

    val retrofit = Retrofit.Builder()
            .baseUrl(mockWebServer.url("/"))
            .addConverterFactory(MoshiConverterFactory.create(moshi))
            .build()

    service =  retrofit.create(ApiStores::class.java)



}




@Test
fun getBooleanParsingError() {

    enqueueResponse(case1)

    val article = service.getArticle().execute()

    assert(article.body()!!).isNotNull()
    assert(article.body()!!.is_local).isEqualTo(false)  // test fail here 

}

但当我将模型类中is_local字段的数据类型更改为不可为空时,它可以正常工作

1 个答案:

答案 0 :(得分:0)

问题是类型kotlin.Booleankotlin.Boolean?对应于两种不同的Java类型:

  • kotlin.Booleanboolean Java原始类型
  • kotlin.Boolean?java.lang.Boolean Java类型

在测试中,您为kotlin.Boolean(即Java boolean类型)创建了一个适配器,而在您的数据模型中,您有一个kotlin.Boolean?(即java.lang.Boolean })。 因此,当调用create(...)的方法Factory时,您处于type != requestedType的情况,因此不会创建适配器而是使用KotlinJsonAdapter。 此时,由于Json的is_local字段是布尔值(但是字符串),因此Moshi应该引发异常。

如果您将数据模型或适配器更改为使用相同类型,则处于type == requestedType的情况,因此创建适配器时,会像以前一样抛出异常,但您添加了{{1块返回默认值。