当前位置: 技术问答>java相关
程序纠错?
来源: 互联网 发布时间:2015-10-09
本文导语: 出错信息: java.rmi.MarshalException: error marshalling return; nested exception is: java.io.NotSerializableException: cardtype.Zycard_type 源码: package cardtype; import java.io.*; public class Zycard_type implements java.io.Serializable { private...
出错信息:
java.rmi.MarshalException: error marshalling return; nested exception is:
java.io.NotSerializableException: cardtype.Zycard_type
源码:
package cardtype;
import java.io.*;
public class Zycard_type implements java.io.Serializable {
private Integer card_type_id;
private String descrip;
public Zycard_type(Integer card_type_id,String descrip) {
this.card_type_id=card_type_id;
this.descrip=descrip;
}
public Integer getcard_type_id(){
return card_type_id;
}
public void setcard_type_id(Integer card_type_id){
this.card_type_id=card_type_id;
}
public String getdescrip(){
return descrip;
}
public void setcard_type_id(String descrip){
this.descrip=descrip;
}
}
java.rmi.MarshalException: error marshalling return; nested exception is:
java.io.NotSerializableException: cardtype.Zycard_type
源码:
package cardtype;
import java.io.*;
public class Zycard_type implements java.io.Serializable {
private Integer card_type_id;
private String descrip;
public Zycard_type(Integer card_type_id,String descrip) {
this.card_type_id=card_type_id;
this.descrip=descrip;
}
public Integer getcard_type_id(){
return card_type_id;
}
public void setcard_type_id(Integer card_type_id){
this.card_type_id=card_type_id;
}
public String getdescrip(){
return descrip;
}
public void setcard_type_id(String descrip){
this.descrip=descrip;
}
}
|
你的这个程序肯定没有问题,我试了,绝对Serializable,所以问题不是出在这,找找别的吧。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。