gpt4 book ai didi

android - 使用 Gson 的 Google Analytics 反序列化返回 LinkedTreeMap

转载 作者:太空宇宙 更新时间:2023-11-03 11:02:27 29 4
gpt4 key购买 nike

我正在尝试通过广播在 Intent 中传递包含 Analytics Reporting 数据的对象。问题是反序列化返回 LinkedTreeMap 而不是原始序列化对象,导致 ClassCastException 崩溃。我试图遵循在 SO 上找到的所有答案,从使用 TypeToken 修改 ProGuard 规则,但没有任何效果。

我想实现 Parcelable 接口(interface),但问题是我有一个内部私有(private) AsyncTask 类,在该类中收集数据并将其推送到将通过广播发送的 Intent 中。

这是序列化数据的助手代码:

public class AnalyticsHelper 
{
...

private class GoogleBatchTask extends AsyncTask<GetReportsRequest,Void,GetReportsResponse>
{
@Override
protected GetReportsResponse doInBackground(@NonNull GetReportsRequest... reports)
{
GetReportsResponse response = null;

try {
if (m_reports == null)
return null;
response = m_reports.reports().batchGet(reports[0]).execute();
} catch (IOException e) {
Console.log(e);
}

return response;
}

@Override
protected void onPostExecute(GetReportsResponse response)
{
Intent intent = new Intent();
intent.setAction("com.keyone.contactpackapp.ANALYTICS_DATA");
intent.putExtra("response", new Gson().toJson(response));

Context context = PackConfig.instance().context();
if (context == null)
return;

context.sendBroadcast(intent);
}
}
}

AnalyticsFragment.java,反序列化发生的地方:

public class AnalyticsFragment extends Fragment
{
@Override
public void onResume()
{
super.onResume();

// Listen to custom intent with data
IntentFilter filter = new IntentFilter("com.keyone.contactpackapp.ANALYTICS_DATA");

m_receiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent)
{
// Get data from intent and pass it to the right fragment
String szJson = intent.getStringExtra("response");

//m_response = new Gson().fromJson(szJson, GetReportsResponse.class);
Type listType = new TypeToken<GetReportsResponse>(){}.getType();
m_response = new Gson().fromJson(szJson, listType);

Fragment fragment = m_activity.currentFragment();
fragment.updateData();
}
};

if (m_activity != null)
m_activity.registerReceiver(m_receiver, filter);
}
}

最佳答案

由于要序列化的对象的性质,无法使用 Gson 以正确的方式反序列化对象,既不使用 Java Serializable 接口(interface)也不使用 Android Parcelable 接口(interface)。

所以我选择调用接收类的一个实例,通过其中的一个方法传递对象数据

关于android - 使用 Gson 的 Google Analytics 反序列化返回 LinkedTreeMap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39452941/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com