亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中怎么使用Intent傳輸包含自定義類的ArrayList

發布時間:2021-07-22 16:48:39 來源:億速云 閱讀:179 作者:Leah 欄目:移動開發

這篇文章給大家介紹Android中怎么使用Intent傳輸包含自定義類的ArrayList,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

Serializable

Java的對象序列化指的是將那些實現了Serializable接口的對象轉換成一個字節序列,并且能在需要的時候再將這個字節序列完全恢復為之前的對象。

想實現對象的序列化,需要實現java.io.Serializable接口(注意,這個接口只是一個標記接口,并沒有具體需要override的方法)。當然,你也可以自己實現對象的序列化,但是我認為既然Java提供了這么一套對象序列化的機制,我們最好還是使用官方提供的方法。

Example

創建一個簡單對象,并且實現Serializable接口

package javastudy;
import java.io.Serializable;
public class Person implements Serializable {
  private static final long serialVersionUID = -6470574927973900913L;
  private String firstName;
  private String secondName;
  // example for transinet
  private transient String noSerializableString;
  public Person(String firstName, String secondName, String noSerializableString) {
    super();
    this.firstName = firstName;
    this.secondName = secondName;
    this.noSerializableString = noSerializableString;
  }
  public String getFirstName() {
    return firstName;
  }
  public void setFirstName(String firstName) {
    this.firstName = firstName;
  }
  public String getSecondName() {
    return secondName;
  }
  public void setSecondName(String secondName) {
    this.secondName = secondName;
  }
  public String getNoSerializableString() {
    if (noSerializableString != null) {
      return noSerializableString;
    } else {
      return "";
    }
  }
  public void setNoSerializableString(String noSerializableString) {
    this.noSerializableString = noSerializableString;
  }
  public String toString() {
    return "Person [ first name :" + getFirstName() + ", second name :" + getSecondName() + ", no serializable :"
        + getNoSerializableString() + "]";
  }
}

再寫一個類,用于實現對象的序列化和反序列化

package javastudy;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
public class TestSerializable {
  public static void main(String[] args) {
    Person person = new Person("Wang", "Zhengyi", "Genius");
    String fileName = "/tmp/person.out";
    // save object to file
    FileOutputStream fos = null;
    ObjectOutputStream out = null;
    try {
      fos = new FileOutputStream(fileName);
      out = new ObjectOutputStream(fos);
      out.writeObject(person);
      out.flush();
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (fos != null) {
        try {
          fos.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
      if (out != null) {
        try {
          out.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
    // read object from file
    FileInputStream fin = null;
    ObjectInputStream in = null;
    try {
      fin = new FileInputStream(fileName);
      in = new ObjectInputStream(fin);
      Person p = (Person) in.readObject();
      System.out.println(p);
    } catch (Exception e) {
      e.printStackTrace();
    } finally {
      if (fin != null) {
        try {
          fin.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
      if (in != null) {
        try {
          in.close();
        } catch (IOException e) {
          e.printStackTrace();
        }
      }
    }
  }
}

Intent傳輸包含自定義類的ArrayList

之所以之前介紹了Serializable,是因為這是實現Intent傳輸的前提,ArrayList包含的自定義類必須實現Serializable接口才能通過putSerializable()方法被傳遞。

還是用上面的Person類作為自定義的類,則第一個傳遞ArrayList的Activity關鍵代碼如下:

// Intent Creation and Initialization
Intent passIntent = new Intent();
passIntent.setClass(MainActivity.this, SecondaryActivity.class);
// Create custom class Object
Person p1 = new Person("Wang", "Zhengyi", "first");
Person p2 = new Person("Chen", "Shan", "second");
// Create Array List of custom Class and add the Created object
ArrayList<Person> aListClass = new ArrayList<Person>();
aListClass.add(p1);
aListClass.add(p2);
// Create a Bundle and Put Bundle in to it
Bundle bundleObject = new Bundle();
bundleObject.putSerializable("key", aListClass);
// Put Bundle in to Intent and call start Activity
passIntent.putExtras(bundleObject);
startActivity(passIntent);

第二個接收ArrayList的Activity關鍵代碼如下:

try{
  // Get the Bundle Object
  Bundle bundleObject = getIntent().getExtras();
    // Get ArrayList Bundle
  ArrayList<Person> classObject = (ArrayList<Person>) bundleObject.getSerializable("key");
    Retrieve Objects from Bundle
  for(int index = 0; index < classObject.size(); index++){
    Person person = classObject.get(index);
    Toast.makeText(getApplicationContext(), person, Toast.LENGTH_SHORT).show();
  }
} catch(Exception e){
  e.printStackTrace();
}

關于Android中怎么使用Intent傳輸包含自定義類的ArrayList就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

特克斯县| 古交市| 徐州市| 黔西| 拉萨市| 温宿县| 安宁市| 莒南县| 上杭县| 育儿| 蓬溪县| 哈尔滨市| 湟中县| 九江县| 藁城市| 宜都市| 游戏| 富裕县| 信宜市| 元谋县| 峨边| 呼和浩特市| 井冈山市| 江达县| 岐山县| 宣武区| 凉山| 海盐县| 临安市| 额尔古纳市| 葫芦岛市| 鄂尔多斯市| 靖远县| 三穗县| 梅州市| 高唐县| 吉林省| 顺义区| 耒阳市| 西吉县| 北票市|