I'll give you my situation. I have a game that writes/reads a file that keeps track of a high score. It is in Java and it is hosted as a Java Applet and a Java Web Start program.
I want to be able to write and read from a certain file on the server, the same directory in which my game is in on my server.
Everything I have read says this is perfectly ok and the working sandbox doesn't affect this. Well I can't seem to figure out how to do this.
I don't know if the way I write the file is bad, the way I retrieve the directory, or if in the script to execute the applet I need to include something, or in the JNLP file I need to put something.
Everything I have read tells me it is possible and easy but I can't find a place that tells me exactly how to implement it.
To sum it all up:
I have a program wrapped in a single Jar file on my server. I want to be able to have read/write/delete priviledges in the same directory the Jar is in on the server, NOT the clients computer.
If anyone could shed any light on the subject I would greatly appreciate it.


