Basic question I'm sure. If possible, is their a way to store permanent variables on your system asuming that you are not transporting the java file anywhere? I need to be able to return to the same variables after I end the program and execute it again. Thanks!
09-24-2004, 03:10 AM
Phaelax
store the variables in a file.
09-24-2004, 07:13 PM
Jag89
how?
09-26-2004, 02:23 PM
ArchAngel
Once your program terminates all variables will diposed of. Therefore if you want your data to be available if you execute the program again, you must write it out to some kind of data source e.g. a file, a database etc.