Skip to content

Instantly share code, notes, and snippets.

@6a6f6a6f
Created February 23, 2022 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 6a6f6a6f/facf7e9cff4a1a4179140ffb46e9cf09 to your computer and use it in GitHub Desktop.
Save 6a6f6a6f/facf7e9cff4a1a4179140ffb46e9cf09 to your computer and use it in GitHub Desktop.
public class Person implements Serializable {
private String firstName;
private String lastName;
//...
}
FileInputStream fileIn = new FileInputStream("personSerialized");
Person person = (Person) new ObjectInputStream(fileIn).readObject();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment