- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我使用 GSON 转换服务器卷土重来的数据类。我这样定义数据类......还有一些我不想用 GSON 转换的字段..所以我添加了带注释的 ExclusionStrategy。通过测试,发现AnnotationExclusionStrategy运行正常,并跳过不想转换的字段。我在 uiType 和 testData 等字段中添加注释,但实际上当我打印对象时。我发现字段 uiType 和 testData 已转换为零和 null..
然后我创建一个新的数据类。 uiType 和 testData 没有删除为零或 null。GSON 转换时出错吗??
有什么办法可以解决这个问题吗?
这是代码。
数据类实体:
data class Product(@SerializedName("num_iid") var productId: Long,
@SerializedName("title") var productName: String,
@SerializedName("item_url") var productUrl: String,
@SerializedName("pict_url") var productPic: String,
@SerializedName("small_images") var productPics: ProductImageList,
@SerializedName("zk_final_price") var productPrice: String,
@SerializedName("reserve_price") var originPrice: String,
@SerializedName("provcity") var place: String,
@SerializedName("volume") var sellCount: String,
@SerializedName("user_type") var sellerType: String,
@SerializedName("nick") var sellerName: String,
@SerializedName("seller_id") var sellerId: Long
) : MultiItemEntity {
@Exclude
@ShoppingCenterConstant.ProductListUiType
var uiType = ShoppingCenterConstant.LIST_UI_TYPE_COMMON
var testData = "TestData"
override fun getItemType(): Int {
return ShoppingCenterConstant.LIST_UI_TYPE_COMMON
}
override fun toString(): String {
return "Product(productId=$productId, productName='$productName', productUrl='$productUrl', productPic='$productPic', productPics=$productPics, productPrice='$productPrice', originPrice='$originPrice', place='$place', sellCount='$sellCount', sellerType='$sellerType', sellerName='$sellerName', sellerId=$sellerId, uiType=$uiType, testData='$testData')"
}
}
GSON 注释排除:
public class AnnotationExclusion implements ExclusionStrategy {
public static final String TAG = GsonUtil.TAG;
@Override
public boolean shouldSkipField(FieldAttributes f) {
boolean isShouldSkip = f.getAnnotation(Exclude.class) != null;
return isShouldSkip;
}
@Override
public boolean shouldSkipClass(Class<?> clazz) {
boolean isShouldSkip = clazz.getAnnotation(Exclude.class) != null;
return isShouldSkip;
}
打印输出的地方:
override fun showData(data: BaseListBean<Product>) {
var product = Product(0, "", "", ""
, ProductImageList(List(0, { String() })), "", "", "", ""
, "", "", 0)
LogUtils.info("print out new product:" + product)
mResultListener.onResponse(data)
}
GSON 转换器的结果,您可以看到字段 uiType 和 testData 已转换为零或 null:
Product(productId=552634381786, productName='eoodoo新生儿礼盒婴儿衣服秋冬套装出生满月礼物初生母婴宝宝用品', productUrl='http://item.taobao.com/item.htm?id=552634381786', productPic='https://img.alicdn.com/tfscom/i4/2832303009/O1CN013tXM6L1Y6AFHSy7xN_!!0-item_pic.jpg', productPics=com.laka.ergou.mvp.shopping.center.model.bean.ProductImageList@1033f68, productPrice='259.72', originPrice='755.00', place='浙江 杭州', sellCount='1159', sellerType='1', sellerName='eoodoo旗舰店', sellerId=2832303009, uiType=0, testData='null')
创建新对象的结果,这看起来不错:
Product(productId=0, productName='', productUrl='', productPic='', productPics=com.laka.ergou.mvp.shopping.center.model.bean.ProductImageList@1c228b, productPrice='', originPrice='', place='', sellCount='', sellerType='', sellerName='', sellerId=0, uiType=1, testData='testData')
这是我使用的 JSON.但是像uiType和testData这样的字段。只是我在代码中定义并在本地使用的字段,这些不是服务器恢复 json 字段
{
"tbk_item_get_response":{
"results":{
"n_tbk_item":[
{
"item_url":"http://item.taobao.com/item.htm?id=582889134126",
"nick":"宝绒羊服饰旗舰店",
"num_iid":582889134126,
"pict_url":"https://img.alicdn.com/tfscom/i1/1720028843/O1CN01ERqlHz2FC8tL1m2tz_!!0-item_pic.jpg",
"provcity":"浙江 杭州",
"reserve_price":"1318.00",
"seller_id":1720028843,
"small_images":{
"string":[
"https://img.alicdn.com/tfscom/i4/1720028843/O1CN01xD9JyD2FC8tJMRuk2_!!1720028843.jpg",
"https://img.alicdn.com/tfscom/i4/1720028843/O1CN01twbf3O2FC8tLEHVJc_!!1720028843.jpg",
"https://img.alicdn.com/tfscom/i4/1720028843/O1CN01zM2clN2FC8tE0LO5q_!!1720028843.jpg",
"https://img.alicdn.com/tfscom/i3/1720028843/O1CN01WW6xzz2FC8tKjoitz_!!1720028843.jpg"
]
},
"title":"羽绒服女2018新款女装冬季短款韩版时尚银色亮面滩羊毛领加厚外套",
"user_type":1,
"volume":2138,
"zk_final_price":"498.00"
}
]
},
"total_results":19643,
"request_id":"kvbqd1jrgqcg"
}
最佳答案
Gson 目前正在破坏 Kotlin 类型安全。它可以将 null 写入非 null 属性。当您阅读的 json 将该字段分配给 null 时,就会发生这种情况。例如,如果您有数据类:
data class A (
var nonNullable: String = "",
var other: Int = 42
)
以及以下 JSON:
{
"nonNullable": null,
"other": 91
}
作为结果,您将在 nonNullable
中拥有 null
。
为避免您可以为您的类创建自定义 GSON 类型转换器或使 nonNullable
实际上可以为 null,但提供 getter 和 setter,这将忽略 null
值:
class A {
var nonNullable: String? = ""
get() = field ?: ""
set(value) {
if (value != null) {
field = value
}
}
}
与 0 相同 - 这意味着您解析的 JSON 将该字段分配为零。或者,如果不是这样 - 向我们提供您的 JSON 以使问题更清楚。
关于java - Kotlin data class convert with gson...默认值是由零或空转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53929248/
我试图让 gson 在 java 项目上工作,但每次运行时都会出现上述错误。我没有使用任何闪存 IDE,只是 vim,我看到的与我的问题相关的每个问题都与 eclipse 及其部署设置有关。我希望有人
我一直在关注将对象数组转换为 JSON 的教程,但我遇到了一些找不到解决方案的错误。 代码 第 60 - 64 行 Gson gson = new Gson().toJson(data); respo
我正在创建一个新的 Netty 管道,我正在尝试: 避免过早优化。 编写易于向我的一位实习生解释的代码。 这种工厂方法当然很容易解释: public String toJSON() { Gso
我尝试在程序中使用 Unirest,但不断收到此错误 java.lang.NoSuchMethodError: com.google.gson.Gson.newBuilder()Lcom/google
// Retrofit compile 'com.squareup.retrofit2:retrofit:2.1.0' // JSON Parsing compile 'com.google.code
我正在尝试将 Gson 与接口(interface)一起使用: public interface Photo { public int getWidth(); } public class D
我正在执行一个 Web 服务,这是我的响应,但是当我尝试使用 Gson 库将此 JSONObject(org.json.JSONObject) 转换为特定对象时,我的应用程序崩溃了。所以,我不知道为什
我有以下 .json 文件 - { "IDs":[ "1716136233", "2030187302", "204897807
我试图在我的项目中使用 GSON,但我的应用程序崩溃了,logcat 说找不到 com.google.gson.Gson。我已将 import com.google.gson.Gson 放在我的类文件
在下面的示例中,我尝试序列化我的自定义类Couple,其中包含Point2D 类型的字段。 我发现,SErialzing 的过程取决于 DEserializer 的存在。 此外,如果存在反序列化器,则
我有课 class ThreadComment( banned: Int, closed: Int, comment: String?, date: String?,
使用 gson 解析 json 时,我有一个奇怪的行为。我使用这个代码: private static Container parseContainer(String containerJson) {
我注意到 GSON HTML 转义 字符,可以通过使用disableHtmlEscaping()来禁用它构建器配置方法。但我的问题是 - 为什么 GSON 默认情况下会进行 HTML 转义?不进行 H
我注意到一个奇怪的问题。我可以使用 Junit 运行我的测试用例,但是当我使用 maven 运行时,其中一个测试用例失败。它提示找不到 Gson 类 def。 我能够在 Maven 依赖项中看到 Gs
我有一个看起来像这样的 json {response:{"status":{"....."},data:[{"name":"Alice","id":"123"},{"name":"Jack","id"
所以,我的应用已经发布了将近一年,但没有看到这个问题,现在它出现了。 即使是现在,我的手机上的调试版本也没有这个问题。我对从 Android Studio 打开的任何模拟器没有任何问题。然而,Goog
我是 Android 开发环境的新手,因此需要专家的帮助。 java.lang.NoClassDefFoundError: com.google.gson.Gson 项目中包含 Gson 库,但是当从
总结 我在我的 android 应用程序中使用 Retrofit 和 Gson 有一段时间了,但是我从服务器获得的 ID 是 13 位数字。 Gson 自动将这些数字转换为科学计数法,然后将其转换为
我正在使用一个大的 JSON 对象,它具有来自多个请求的响应。 我正在处理的部分只需要很少的对象,而且它们并不总是在前面。例如 json 结构是: ** json = { mainDocume
我有一个休息网络服务: @Path("/tranreq") public class TranscriptRequesterResource { private static final Gs
我是一名优秀的程序员,十分优秀!