摘要:
先序列化, 再反序列化序列化: 将内存中的对象, 写到硬盘 -> 输出流反序列化: 将硬盘中的对象, 读取到内存 -> 输入流ObjectOutputStream : 序列化, 对象输出流 `public ObjectOutputStream(OutputStream out) ` `public 阅读全文
摘要:
代码 解析: 类名.class.get类加载器().getResourceAsStream("文件名"); 案例代码: Demo.class.getClassLoader().getResourceAsStream("Lianxi/wzw.properties"); 图例 阅读全文