Person person = new Person(); person.setName("wuzy"); Intent intent = new Intent(MainActivity.this, Main2Activity.class); intent.putExtra("person_data",person); startActivity(intent);
接收对象:
1
Person person = (Person) getIntent().getSerializableExtra("person_data");
publicstaticfinal Creator<Person> CREATOR = new Creator<Person>() { /* 用于将写入 Parcel 容器中的数据读出来,用读出来的数据实例化一个对象,并且返回 */ @Override public Person createFromParcel(Parcel in){ Person person = new Person(); person.setName(in.readString()); return person; }
Person person = new Person(); person.setName("wuzy"); Intent intent = new Intent(MainActivity.this, Main2Activity.class); intent.putExtra("person_data",person); startActivity(intent);
接收对象:
1
Person person = getIntent().getParcelableExtra("person_data");
3、转化为 JSON 字符串
Model:
1 2 3 4 5 6 7 8 9 10
publicclassPerson{ private String name; public String getName(){ return name; }
Person person = new Person(); person.setName("wuzy"); Intent intent = new Intent(MainActivity.this, Main2Activity.class); intent.putExtra("person_data",new Gson().toJson(person)); startActivity(intent);
接受对象:
1 2
String personJson = getIntent().getStringExtra("person_data"); Person person = new Gson().fromJson(personJson, Person.class);