java泛型方法,序列化与反序列化
摘要:
import java.io.*;public class GenericMethodTest { public static void main(String[] args) { Student stu=new Student(); stu.name="雷锋"; stu.age=100; String fileName="e:/a.dat"; try { toFile(stu,fileName); } catch (IOException e) { e.pri... 阅读全文
posted @ 2012-06-27 09:49 雨渐渐 阅读(2088) 评论(0) 推荐(0) 编辑