I've created a text file but can't seem to find where it is saved to check whether the data was saved correctly!
This is the code i'm using:
FileOutputStream fos = new FileOutputStream("userAccounts.txt");
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(Global.getInstance().userArray);
oos.close();