redHmian 发表于 2022-6-21 16:16:47

【java】序列化对象失败如何解决

本帖最后由 redHmian 于 2022-6-21 21:35 编辑

public void writeToFile(File f) throws IOException {
      ObjectOutputStream os = new ObjectOutputStream(new FileOutputStream(f));
      Circle circle = this;
      os.writeObject(circle);
      System.out.println("序列化成功");
      os.close();
    }

xueCxueCxueJava 发表于 2022-6-22 21:56:52

{:10_278:}{:10_319:}

nikezhi 发表于 2022-6-26 03:55:00

{:5_102:}

eyuyan 发表于 2022-6-26 03:55:18

{:7_146:}
页: [1]
查看完整版本: 【java】序列化对象失败如何解决