文章列表
出现一个异常:
java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: com.abc.beans.AppBean
原因:AppBean类没有实现序列化
解决方法:
1。AppBean类实现implements Serializable接口;
2。在AppBean类中加入import java.io.Serializable;
- 2009-02-24 09:37
- 浏览 842
- 评论(0)
10.2. Daytime Server
For a simple demonstration of each communication technique, we're going to write an applet that asks its server for the current time of day. The applet first uses an HTTP connection, then a non-HTTP socket connection, and finally an RMI connection. Of course, an applet can normal ...
- 2009-02-10 18:46
- 浏览 2431
- 评论(0)