Originally Posted by
coolFrenzi
Converting the application to applet is not working since applets can't read from and and write to a file.
That is a feature of applets. The solution is to not use applets.
If you are doing browser stuff, have the browser read/write the files.
You probably need to learn about servlets, which are server side, not client-side the way applets are.
Programming in the browser should be done in javascript, not in java