Skip to content

Instantly share code, notes, and snippets.

View pol4xer's full-sized avatar

Alexander pol4xer

View GitHub Profile
@pol4xer
pol4xer / Serialization_on_Java
Last active August 29, 2015 14:21
Serialization
public class Serialization
{
public static ArrayList<Profile> profiles = new ArrayList<Profile>();
public static void main(String[] args)
{
profiles = (ArrayList<Profile>) deserData("profiles");
System.out.println(profiles.size());
Profile profile = new Profile();
profile.setName(JOptionPane.showInputDialog(null, "Введите имя:"));