im trying to develop a download manager for my college project using java. I wanna know the best technique that can be used to save the download list. Im using jtable and abstracttablemodel to display the download thread details. I want the download manager to remember the downloads after the application restarts.
You can use a file as @VD' said, but you might want to use something called Preferences. It really depends on your needs. Do you need to query this data, or do you just want to save and retrieve it? If the latter, use Preferences. If the former, use a database.