问题
i am trying to pass the gson serialised object to intent by using the below code
intent.putExtra("com.example", vo); // vo is the gson serialised object.
but it is throwing the run time exception, Please help.
java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = com.example.d.a)
at android.os.Parcel.writeSerializable(Parcel.java:1285)
at android.os.Parcel.writeValue(Parcel.java:1233)
at android.os.Parcel.writeMapInternal(Parcel.java:591)
at android.os.Bundle.writeToParcel(Bundle.java:1646)
at android.os.Parcel.writeBundle(Parcel.java:605)
at android.content.Intent.writeToParcel(Intent.java:6831)
at android.app.ActivityManagerProxy.startActivity(ActivityManagerNative.java:1927)
at android.app.Instrumentation.execStartActivity(Instrumentation.java:1419)
at android.app.Activity.startActivityForResult(Activity.java:3390)
at android.app.Activity.startActivityForResult(Activity.java:3351)
at android.app.Activity.startActivity(Activity.java:3587)
at android.app.Activity.startActivity(Activity.java:3555)
回答1:
No you are using it in the wrong way.
Put the object in the intent as:
Gson gson = new Gson();
Intent intent = new Intent(Source.this, Target.class);
intent.putExtra("obj", gson.toJson(yourObject));
and get the object in another activity as:
Gson gson = new Gson();
String strObj = getIntent().getStringExtra("obj");
SourceObject obj = gson.fromJson(strObj, SourceObject.class);
回答2:
When your object or Model is extend RealmObject you need to use that:
Step1:
Gson gson = new GsonBuilder() .setExclusionStrategies(new ExclusionStrategy() {
@Override
public boolean shouldSkipField(FieldAttributes f) {
return f.getDeclaringClass().equals(RealmObject.class);
}
@Override
public boolean shouldSkipClass(Class<?> clazz) {
return false;
}
})
.create();
And
intent.putExtra("userfrom",gson.toJson(obj));
Step2:
Gson gson = new GsonBuilder().create();
user =gson.fromJson(getIntent().getStringExtra("userfrom"),User.class);
I used this for pass data with Intent but work for retrofit
回答3:
I added implements Serializable to my model AND other models (sub-models) used by my model. Then I can pass the GSON object via Intent:
public class MyModel implements Serializable {
SubModel subModel;
}
public class SubModel implements Serializable {
...
}
In fragment:
Intent startIntent = new Intent(getContext(), NextActivity.class);
startIntent.putExtra("mymodel", myModelObject);
startActivity(startIntent);
In next activity:
Intent intent = getIntent();
MyModel mymodel = (MyModel) intent.getSerializableExtra("mymodel");
// test if we get the model correctly:
setTitle(mymodel.getName());
来源:https://stackoverflow.com/questions/21761438/how-to-pass-gson-serialised-object-to-intent-in-android