Hi, I have to create a voting system for school with java, the system will be used to vote for movies. It will have all of the users and movies set up before hand by someone.
It is a console application and it will be ran on multiple computers. Some of the questions i have about this are:
My teacher wants us to use a text file to maintain all of the data will this be a problem? Would it be better to switch to a database such as mysql and why?
When the user types in their login information, should the program (a) just look up the person's credentials in the text file and then re-create the object for the person or (b) should it re-create all of the users then just check with the array list for the user and check the password?
Or for #2 Would there be a better way to do it ?
Thanks,
SR