问题描述
请帮助,我在下面的代码中收到以下消息:
Help please, I get the following message, in the following code that I have:
listaFinal = (ArrayList<PuntoNota>) getIntent().getSerializableExtra("miLista");
AdapterDatos adapter = new AdapterDatos(this, listaFinal);
PuntoNota.java
public class PuntoNota implements Serializable{
private String punto;
private String nota;
public PuntoNota (String punto, String nota){
this.punto = punto;
this.nota = nota;
}
public String getPunto(){
return punto;
}
public String getNota(){
return nota;
}
}
AdapterDatos:
public AdapterDatos(Context context, ArrayList<PuntoNota> puntoNotaList) {
this.context = context;
this.puntoNotaList = puntoNotaList;
}
该应用程序运行良好,但是我收到以下消息:
The application is working well, but I get the following message:
推荐答案
根本原因:这是来自IDE的警告,getSerializableExtra
返回Serializable
,并且您尝试转换为ArrayList<PuntoNota>
.如果程序无法将其强制转换为期望的类型,则可能会在运行时抛出 ClassCastException .
Root cause: This is a warning from IDE, getSerializableExtra
return a Serializable
, and you are trying to convert to ArrayList<PuntoNota>
. It might throw ClassCastException at runtime if the programe cannot cast it to your expected type.
解决方案:在android中传递用户定义的对象时,您的类应实现Parcelable
而不是Serializable
接口.
Solution: In android to pass a user-defined object around, your class should implements Parcelable
instead of Serializable
interface.
class PuntoNota implements Parcelable {
private String punto;
private String nota;
public PuntoNota(String punto, String nota) {
this.punto = punto;
this.nota = nota;
}
protected PuntoNota(Parcel in) {
punto = in.readString();
nota = in.readString();
}
public String getPunto() {
return punto;
}
public String getNota() {
return nota;
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(punto);
dest.writeString(nota);
}
public static final Creator<PuntoNota> CREATOR = new Creator<PuntoNota>() {
@Override
public PuntoNota createFromParcel(Parcel in) {
return new PuntoNota(in);
}
@Override
public PuntoNota[] newArray(int size) {
return new PuntoNota[size];
}
};
}
在发件人端
ArrayList<PuntoNota> myList = new ArrayList<>();
// Fill data to myList here
...
Intent intent = new Intent();
intent.putParcelableArrayListExtra("miLista", myList);
在接收方
ArrayList<? extends PuntoNota> listaFinal = getIntent().getParcelableArrayListExtra("miLista");
这篇关于未经检查的将java.io.Serializable强制转换为java.util.ArrayList的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!